├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── CHANGELOG ├── CODEOWNERS ├── LICENSE.md ├── README.md └── src ├── Config.cs ├── DatabaseService.cs ├── FileManager.cs ├── K4-GOTV.csproj ├── Plugin.cs ├── ThreadModel.cs ├── UploadService.cs ├── lang ├── en.json └── pl.json └── payload.json /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-GOTV/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-GOTV/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-GOTV/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-GOTV/HEAD/CHANGELOG -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-GOTV/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-GOTV/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-GOTV/HEAD/README.md -------------------------------------------------------------------------------- /src/Config.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-GOTV/HEAD/src/Config.cs -------------------------------------------------------------------------------- /src/DatabaseService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-GOTV/HEAD/src/DatabaseService.cs -------------------------------------------------------------------------------- /src/FileManager.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-GOTV/HEAD/src/FileManager.cs -------------------------------------------------------------------------------- /src/K4-GOTV.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-GOTV/HEAD/src/K4-GOTV.csproj -------------------------------------------------------------------------------- /src/Plugin.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-GOTV/HEAD/src/Plugin.cs -------------------------------------------------------------------------------- /src/ThreadModel.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-GOTV/HEAD/src/ThreadModel.cs -------------------------------------------------------------------------------- /src/UploadService.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-GOTV/HEAD/src/UploadService.cs -------------------------------------------------------------------------------- /src/lang/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-GOTV/HEAD/src/lang/en.json -------------------------------------------------------------------------------- /src/lang/pl.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-GOTV/HEAD/src/lang/pl.json -------------------------------------------------------------------------------- /src/payload.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/KitsuneLab-Development/K4-GOTV/HEAD/src/payload.json --------------------------------------------------------------------------------