1
0
mirror of https://github.com/yorukot/superfile.git synced 2025-02-06 09:26:18 +00:00
superfile/main.go
2024-05-20 18:30:12 +08:00

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)
}