mirror of
https://github.com/bytedance/g3.git
synced 2026-05-13 15:32:12 +00:00
7 lines
214 B
Lua
7 lines
214 B
Lua
|
|
local script_dir = __file__:match("(.*/)")
|
|
local file = io.open(string.format("%s%s", script_dir, "group_1.json"), "r")
|
|
local content = file:read "*a"
|
|
file:close()
|
|
-- return the json encoded string
|
|
return content
|