feat: improve bv parser
This commit is contained in:
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)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user