mirror of
https://github.com/Print3M/epic
synced 2026-06-06 16:34:33 +00:00
13 lines
84 B
Go
13 lines
84 B
Go
package main
|
|
|
|
import (
|
|
"epic/cmd"
|
|
"os"
|
|
)
|
|
|
|
func main() {
|
|
cmd.Run()
|
|
|
|
os.Exit(0)
|
|
}
|