├── .github └── workflows │ └── maven-publish.yml ├── .gitignore ├── LICENSE ├── README.md ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle.kts └── src └── main ├── kotlin └── com │ └── blr19c │ └── falowp │ └── bot │ └── system │ ├── Application.kt │ ├── ApplicationConfig.kt │ ├── Log.kt │ ├── adapter │ ├── AdapterApplication.kt │ ├── BotAdapter.kt │ └── BotAdapterInfo.kt │ ├── api │ ├── ApiAuth.kt │ ├── BotApi.kt │ ├── MessageTypeEnum.kt │ ├── ReceiveMessage.kt │ ├── SendMessage.kt │ └── SourceTypeEnum.kt │ ├── cache │ ├── CacheMap.kt │ ├── CacheReference.kt │ └── OnlyReadOnceReference.kt │ ├── expand │ ├── Base64.kt │ ├── BufferedImage.kt │ ├── ChannelQueue.kt │ ├── ImageUrl.kt │ └── String.kt │ ├── json │ ├── Json.kt │ └── LocalDateTimeDeserializer.kt │ ├── listener │ ├── events │ │ ├── GreetingEvent.kt │ │ ├── HelpEvent.kt │ │ └── MessageEvent.kt │ └── hooks │ │ ├── EventPluginExecutionHook.kt │ │ ├── HelpEventHook.kt │ │ ├── MessagePluginExecutionHook.kt │ │ ├── ReceiveMessageHook.kt │ │ ├── SendMessageHook.kt │ │ └── TaskPluginExecutionHook.kt │ ├── plugin │ ├── Plugin.kt │ ├── PluginBotApi.kt │ ├── PluginInfo.kt │ ├── PluginManagement.kt │ ├── PluginRegister.kt │ ├── event │ │ ├── EventManager.kt │ │ └── PluginHelp.kt │ └── hook │ │ ├── Hook.kt │ │ ├── HookBotApi.kt │ │ ├── HookJoinPoint.kt │ │ ├── HookManager.kt │ │ ├── HookProcess.kt │ │ └── HookTypeEnum.kt │ ├── scheduling │ ├── Scheduling.kt │ ├── SchedulingRunnable.kt │ ├── api │ │ ├── SchedulingBotApi.kt │ │ └── SchedulingBotApiSupport.kt │ ├── cron │ │ ├── BitsCronField.kt │ │ ├── CompositeCronField.kt │ │ ├── CronExpression.kt │ │ ├── CronField.kt │ │ ├── QuartzCronField.kt │ │ ├── Trigger.kt │ │ └── TriggerContext.kt │ └── tasks │ │ └── GreetingTask.kt │ ├── utils │ ├── ClassUtils.kt │ ├── ReflectionUtils.kt │ ├── ResourceUtils.kt │ └── ScanUtils.kt │ └── web │ ├── WebClient.kt │ ├── WebServer.kt │ └── Webdriver.kt └── resources ├── application.yaml ├── logback.xml └── system ├── help ├── help.html └── pluginHelp.html └── webclient └── useragent.txt /.github/workflows/maven-publish.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/.github/workflows/maven-publish.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/README.md -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- 1 | rootProject.name = "falowp-bot-system" 2 | -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/Application.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/Application.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/ApplicationConfig.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/ApplicationConfig.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/Log.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/Log.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/adapter/AdapterApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/adapter/AdapterApplication.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/adapter/BotAdapter.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/adapter/BotAdapter.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/adapter/BotAdapterInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/adapter/BotAdapterInfo.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/api/ApiAuth.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/api/ApiAuth.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/api/BotApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/api/BotApi.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/api/MessageTypeEnum.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/api/MessageTypeEnum.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/api/ReceiveMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/api/ReceiveMessage.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/api/SendMessage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/api/SendMessage.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/api/SourceTypeEnum.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/api/SourceTypeEnum.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/cache/CacheMap.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/cache/CacheMap.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/cache/CacheReference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/cache/CacheReference.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/cache/OnlyReadOnceReference.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/cache/OnlyReadOnceReference.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/expand/Base64.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/expand/Base64.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/expand/BufferedImage.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/expand/BufferedImage.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/expand/ChannelQueue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/expand/ChannelQueue.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/expand/ImageUrl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/expand/ImageUrl.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/expand/String.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/expand/String.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/json/Json.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/json/Json.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/json/LocalDateTimeDeserializer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/json/LocalDateTimeDeserializer.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/listener/events/GreetingEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/listener/events/GreetingEvent.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/listener/events/HelpEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/listener/events/HelpEvent.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/listener/events/MessageEvent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/listener/events/MessageEvent.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/listener/hooks/EventPluginExecutionHook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/listener/hooks/EventPluginExecutionHook.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/listener/hooks/HelpEventHook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/listener/hooks/HelpEventHook.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/listener/hooks/MessagePluginExecutionHook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/listener/hooks/MessagePluginExecutionHook.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/listener/hooks/ReceiveMessageHook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/listener/hooks/ReceiveMessageHook.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/listener/hooks/SendMessageHook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/listener/hooks/SendMessageHook.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/listener/hooks/TaskPluginExecutionHook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/listener/hooks/TaskPluginExecutionHook.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/plugin/Plugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/plugin/Plugin.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/plugin/PluginBotApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/plugin/PluginBotApi.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/plugin/PluginInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/plugin/PluginInfo.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/plugin/PluginManagement.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/plugin/PluginManagement.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/plugin/PluginRegister.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/plugin/PluginRegister.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/plugin/event/EventManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/plugin/event/EventManager.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/plugin/event/PluginHelp.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/plugin/event/PluginHelp.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/plugin/hook/Hook.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/plugin/hook/Hook.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/plugin/hook/HookBotApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/plugin/hook/HookBotApi.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/plugin/hook/HookJoinPoint.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/plugin/hook/HookJoinPoint.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/plugin/hook/HookManager.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/plugin/hook/HookManager.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/plugin/hook/HookProcess.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/plugin/hook/HookProcess.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/plugin/hook/HookTypeEnum.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/plugin/hook/HookTypeEnum.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/scheduling/Scheduling.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/scheduling/Scheduling.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/scheduling/SchedulingRunnable.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/scheduling/SchedulingRunnable.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/scheduling/api/SchedulingBotApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/scheduling/api/SchedulingBotApi.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/scheduling/api/SchedulingBotApiSupport.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/scheduling/api/SchedulingBotApiSupport.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/scheduling/cron/BitsCronField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/scheduling/cron/BitsCronField.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/scheduling/cron/CompositeCronField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/scheduling/cron/CompositeCronField.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/scheduling/cron/CronExpression.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/scheduling/cron/CronExpression.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/scheduling/cron/CronField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/scheduling/cron/CronField.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/scheduling/cron/QuartzCronField.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/scheduling/cron/QuartzCronField.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/scheduling/cron/Trigger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/scheduling/cron/Trigger.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/scheduling/cron/TriggerContext.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/scheduling/cron/TriggerContext.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/scheduling/tasks/GreetingTask.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/scheduling/tasks/GreetingTask.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/utils/ClassUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/utils/ClassUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/utils/ReflectionUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/utils/ReflectionUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/utils/ResourceUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/utils/ResourceUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/utils/ScanUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/utils/ScanUtils.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/web/WebClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/web/WebClient.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/web/WebServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/web/WebServer.kt -------------------------------------------------------------------------------- /src/main/kotlin/com/blr19c/falowp/bot/system/web/Webdriver.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/kotlin/com/blr19c/falowp/bot/system/web/Webdriver.kt -------------------------------------------------------------------------------- /src/main/resources/application.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/resources/application.yaml -------------------------------------------------------------------------------- /src/main/resources/logback.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/resources/logback.xml -------------------------------------------------------------------------------- /src/main/resources/system/help/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/resources/system/help/help.html -------------------------------------------------------------------------------- /src/main/resources/system/help/pluginHelp.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/resources/system/help/pluginHelp.html -------------------------------------------------------------------------------- /src/main/resources/system/webclient/useragent.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/falowp-bot/falowp-bot-system/HEAD/src/main/resources/system/webclient/useragent.txt --------------------------------------------------------------------------------