wxWidgets based Stable Diffusion C++ GUi
Ferenc Szontágh
2024-02-04 5e5b8dcd5ce488ec4fdcb5ff07272830711566de
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#ifndef __SD_GUI_CIVITAI_CLIENT__
#define __SD_GUI_CIVITAI_CLIENT__
#include <string>
 
#include <nlohmann/json.hpp>
 
namespace civitai
{
    class Client
    {
    private:
        std::string endpoint;
    }
};
 
#endif