Files
clice/include/Server/Option.h
2024-08-31 20:56:36 +08:00

16 lines
249 B
C++

#pragma once
#include <string>
#include <string_view>
namespace clice {
struct Option {
std::string resource_dir;
static Option parse(std::string_view execpath, std::string_view filepath);
};
extern Option option;
} // namespace clice