mirror of
https://github.com/springzfx/cgproxy.git
synced 2026-01-07 13:07:56 +08:00
18 lines
325 B
C++
18 lines
325 B
C++
// #include "common.h"
|
|
#include "config.hpp"
|
|
#include <fstream>
|
|
#include <iostream>
|
|
#include <pthread.h>
|
|
#include <sstream>
|
|
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string>
|
|
#include <vector>
|
|
using namespace std;
|
|
using namespace CGPROXY::CONFIG;
|
|
|
|
int main() {
|
|
Config c;
|
|
c.saveToFile("./config.json");
|
|
return 0;
|
|
} |