blob: 539c767860dd3acfd4ca1ef2afbfd45d3987ceba (
plain) (
tree)
|
|
/*
* 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 CMD_CI_RUN "ci-run"
#define CMD_WORKER_NEW "worker-new"
#endif
|