extract embed toml example to separate files

This commit is contained in:
bingoohuang
2021-07-05 11:16:49 +08:00
parent 5bcc77b46c
commit 5dbbe19c8b
8 changed files with 517 additions and 520 deletions

View File

@@ -0,0 +1,21 @@
package scaffold
import _ "embed"
//go:embed filer.toml
var Filer string
//go:embed notification.toml
var Notification string
//go:embed replication.toml
var Replication string
//go:embed security.toml
var Security string
//go:embed master.toml
var Master string
//go:embed shell.toml
var Shell string