aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/const.h
blob: 6928235f82675c0db837ff8f57e63b19d7f2aae7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * Copyright (c) 2022 Egor Tensin <Egor.Tensin@gmail.com>
 * This file is part of the "cimple" project.
 * For details, see https://github.com/egor-tensin/cimple.
 * Distributed under the MIT License.
 */

#ifndef __CONST_H__
#define __CONST_H__

extern const char *project_version;
extern const char *project_rev;

extern const char *default_host;
extern const char *default_port;
extern const char *default_sqlite_path;

#define CMD_RUN        "run"
#define CMD_NEW_WORKER "new-worker"
#define CMD_START      "start"
#define CMD_FINISHED   "finished"

#endif