feat: improve bv parser

This commit is contained in:
2024-09-10 17:44:07 +08:00
parent 47f12332df
commit bd585919ae
10 files changed
+174 -19

No files matched your search

@@ -0,0 +1,16 @@
/*
* Copyright © 2024 RTAkland
* Author: RTAkland
* Date: 2024/9/10
*/
package cn.rtast.fancybot.util
import java.io.InputStream
object Resources {
fun loadFromResources(filename: String): InputStream {
return this::class.java.classLoader.getResourceAsStream(filename)
}
}