├── .gitignore ├── CMakeLists.txt ├── LICENSE ├── README.md ├── assets ├── favicon.ico ├── resource.rc └── script.js ├── include ├── config.hpp ├── resource.hpp ├── utils.hpp └── webview.hpp └── src ├── main.cpp └── utils.cpp /.gitignore: -------------------------------------------------------------------------------- 1 | /.vscode 2 | /build -------------------------------------------------------------------------------- /CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyManNice/myCopilot/HEAD/CMakeLists.txt -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyManNice/myCopilot/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyManNice/myCopilot/HEAD/README.md -------------------------------------------------------------------------------- /assets/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyManNice/myCopilot/HEAD/assets/favicon.ico -------------------------------------------------------------------------------- /assets/resource.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyManNice/myCopilot/HEAD/assets/resource.rc -------------------------------------------------------------------------------- /assets/script.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyManNice/myCopilot/HEAD/assets/script.js -------------------------------------------------------------------------------- /include/config.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyManNice/myCopilot/HEAD/include/config.hpp -------------------------------------------------------------------------------- /include/resource.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyManNice/myCopilot/HEAD/include/resource.hpp -------------------------------------------------------------------------------- /include/utils.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyManNice/myCopilot/HEAD/include/utils.hpp -------------------------------------------------------------------------------- /include/webview.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyManNice/myCopilot/HEAD/include/webview.hpp -------------------------------------------------------------------------------- /src/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyManNice/myCopilot/HEAD/src/main.cpp -------------------------------------------------------------------------------- /src/utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/heyManNice/myCopilot/HEAD/src/utils.cpp --------------------------------------------------------------------------------