filebrowser/backend/main.go

10 lines
109 B
Go
Raw Normal View History

package main
import (
2023-06-15 01:08:09 +00:00
"github.com/gtsteffaniak/filebrowser/cmd"
)
func main() {
2023-09-02 16:05:40 +00:00
cmd.StartFilebrowser()
}