aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/src/const.h
blob: f53ef7e27c2e9e1a6d2700a2b68dd20d87ffc963 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
/*
 * 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__

#ifndef DEFAULT_HOST
#define DEFAULT_HOST "127.0.0.1"
#endif
#define DEFAULT_PORT "5556"
#define DEFAULT_SQLITE_PATH "/var/lib/cimple/cimple.sqlite"

#define CMD_RUN "run"
#define CMD_NEW_WORKER "new-worker"

#endif