├── .editorconfig ├── .gitignore ├── Attributes └── DemoBeforeCommandAttribute.cs ├── Middleware └── TestMiddleware.cs ├── Models └── Duration.cs ├── Modules └── TestModule.cs ├── OneBot-Framework-Demo.csproj ├── OneBot-Framework-Demo.sln ├── Program.cs ├── Properties └── launchSettings.json ├── README.md ├── appsettings-reverse_ws-example.Development.json ├── appsettings-reverse_ws-example.json ├── appsettings-ws-example.Development.json └── appsettings-ws-example.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaParty/OneBot-CommandRoute-Template/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaParty/OneBot-CommandRoute-Template/HEAD/.gitignore -------------------------------------------------------------------------------- /Attributes/DemoBeforeCommandAttribute.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaParty/OneBot-CommandRoute-Template/HEAD/Attributes/DemoBeforeCommandAttribute.cs -------------------------------------------------------------------------------- /Middleware/TestMiddleware.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaParty/OneBot-CommandRoute-Template/HEAD/Middleware/TestMiddleware.cs -------------------------------------------------------------------------------- /Models/Duration.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaParty/OneBot-CommandRoute-Template/HEAD/Models/Duration.cs -------------------------------------------------------------------------------- /Modules/TestModule.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaParty/OneBot-CommandRoute-Template/HEAD/Modules/TestModule.cs -------------------------------------------------------------------------------- /OneBot-Framework-Demo.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaParty/OneBot-CommandRoute-Template/HEAD/OneBot-Framework-Demo.csproj -------------------------------------------------------------------------------- /OneBot-Framework-Demo.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaParty/OneBot-CommandRoute-Template/HEAD/OneBot-Framework-Demo.sln -------------------------------------------------------------------------------- /Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaParty/OneBot-CommandRoute-Template/HEAD/Program.cs -------------------------------------------------------------------------------- /Properties/launchSettings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaParty/OneBot-CommandRoute-Template/HEAD/Properties/launchSettings.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaParty/OneBot-CommandRoute-Template/HEAD/README.md -------------------------------------------------------------------------------- /appsettings-reverse_ws-example.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaParty/OneBot-CommandRoute-Template/HEAD/appsettings-reverse_ws-example.Development.json -------------------------------------------------------------------------------- /appsettings-reverse_ws-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaParty/OneBot-CommandRoute-Template/HEAD/appsettings-reverse_ws-example.json -------------------------------------------------------------------------------- /appsettings-ws-example.Development.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaParty/OneBot-CommandRoute-Template/HEAD/appsettings-ws-example.Development.json -------------------------------------------------------------------------------- /appsettings-ws-example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ParaParty/OneBot-CommandRoute-Template/HEAD/appsettings-ws-example.json --------------------------------------------------------------------------------