├── .gitignore ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle └── src ├── main ├── java │ └── com │ │ └── plaxz │ │ └── FinalShellHash.java ├── kotlin │ └── FinalshellHelper.kt └── resources │ └── META-INF │ └── services │ └── net.mamoe.mirai.console.plugin.jvm.JvmPlugin └── test └── kotlin └── FinalShellHashTest.kt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layou233/FinalShell-Helper/HEAD/.gitignore -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.code.style=official -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layou233/FinalShell-Helper/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layou233/FinalShell-Helper/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layou233/FinalShell-Helper/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layou233/FinalShell-Helper/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "finalshell-helper" -------------------------------------------------------------------------------- /src/main/java/com/plaxz/FinalShellHash.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layou233/FinalShell-Helper/HEAD/src/main/java/com/plaxz/FinalShellHash.java -------------------------------------------------------------------------------- /src/main/kotlin/FinalshellHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layou233/FinalShell-Helper/HEAD/src/main/kotlin/FinalshellHelper.kt -------------------------------------------------------------------------------- /src/main/resources/META-INF/services/net.mamoe.mirai.console.plugin.jvm.JvmPlugin: -------------------------------------------------------------------------------- 1 | com.plaxz.FinalshellHelper -------------------------------------------------------------------------------- /src/test/kotlin/FinalShellHashTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/layou233/FinalShell-Helper/HEAD/src/test/kotlin/FinalShellHashTest.kt --------------------------------------------------------------------------------