-
Notifications
You must be signed in to change notification settings - Fork 6
Yaml File
ZengJingtao edited this page Jan 30, 2023
·
3 revisions
Yaml 通常被认为是 json 的一个超集,相比 json,Yaml 更适合做配置文件。
class SidePluginRepo {
public:
// ...
Status ImportAutoFile(const Slice& fname); // 根据后缀名自动调用 Json(.json,.js) 或 Yaml(.yaml,.yml)
Status ImportJsonFile(const Slice& fname);
Status ImportYamlFile(const Slice& fname);
// ...
};