Skip to content
This repository has been archived by the owner on Dec 4, 2022. It is now read-only.

Commit

Permalink
Move lua files under lua/ directory to clean up jar files (#48)
Browse files Browse the repository at this point in the history
  • Loading branch information
Doomsdayrs authored Aug 6, 2022
1 parent 6a9f66e commit 05ced1c
Show file tree
Hide file tree
Showing 18 changed files with 17 additions and 17 deletions.
34 changes: 17 additions & 17 deletions src/main/kotlin/app/shosetsu/lib/lua/ShosetsuLuaLib.kt
Original file line number Diff line number Diff line change
Expand Up @@ -303,23 +303,23 @@ class ShosetsuLuaLib : TwoArgFunction() {
}
private val permaLuaFuncs by lazy {
mapOf(
"GET" to loadResource("GET.lua"),
"POST" to loadResource("POST.lua"),
"map" to loadResource("map.lua"),
"mapNotNil" to loadResource("mapNotNil.lua"),
"filter" to loadResource("filter.lua"),
"map2flat" to loadResource("map2flat.lua"),
"first" to loadResource("first.lua"),
"wrap" to loadResource("wrap.lua"),
"flatten" to loadResource("flatten.lua"),
"pipeline" to loadResource("pipeline.lua"),
"pageOfElem" to loadResource("pageOfElem.lua"),
"NodeVisitor" to loadResource("NodeVisitor.lua"),
"Novel" to loadResource("Novel.lua"),
"NovelInfo" to loadResource("NovelInfo.lua"),
"NovelChapter" to loadResource("NovelChapter.lua"),
"ChapterType" to loadResource("ChapterType.lua"),
"NovelStatus" to loadResource("NovelStatus.lua")
"GET" to loadResource("lua/GET.lua"),
"POST" to loadResource("lua/POST.lua"),
"map" to loadResource("lua/map.lua"),
"mapNotNil" to loadResource("lua/mapNotNil.lua"),
"filter" to loadResource("lua/filter.lua"),
"map2flat" to loadResource("lua/map2flat.lua"),
"first" to loadResource("lua/first.lua"),
"wrap" to loadResource("lua/wrap.lua"),
"flatten" to loadResource("lua/flatten.lua"),
"pipeline" to loadResource("lua/pipeline.lua"),
"pageOfElem" to loadResource("lua/pageOfElem.lua"),
"NodeVisitor" to loadResource("lua/NodeVisitor.lua"),
"Novel" to loadResource("lua/Novel.lua"),
"NovelInfo" to loadResource("lua/NovelInfo.lua"),
"NovelChapter" to loadResource("lua/NovelChapter.lua"),
"ChapterType" to loadResource("lua/ChapterType.lua"),
"NovelStatus" to loadResource("lua/NovelStatus.lua")
)
}
}
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 05ced1c

Please sign in to comment.