12 lines
312 B
Go
12 lines
312 B
Go
package common
|
|
|
|
import "fonchain-fiee/pkg/utils"
|
|
|
|
func Init() {
|
|
_ = utils.CreateDirPath("./runtime")
|
|
utils.CopyFile("./data/policy.html", "./runtime")
|
|
utils.CopyFile("./data/service.html", "./runtime")
|
|
utils.CopyFile("../data/policy.html", "./runtime")
|
|
utils.CopyFile("../data/service.html", "./runtime")
|
|
}
|