mirror of
https://github.com/yorukot/superfile.git
synced 2025-02-06 09:26:18 +00:00
17 lines
176 B
Go
17 lines
176 B
Go
package main
|
|
|
|
import (
|
|
"embed"
|
|
|
|
cmd "github.com/yorukot/superfile/src/cmd"
|
|
)
|
|
|
|
var (
|
|
//go:embed src/superfile_config/*
|
|
content embed.FS
|
|
)
|
|
|
|
func main() {
|
|
cmd.Run(content)
|
|
}
|