mirror of
https://codeberg.org/scip/epuppy.git
synced 2025-12-16 12:01:00 +01:00
16 lines
151 B
Go
16 lines
151 B
Go
|
|
package main
|
||
|
|
|
||
|
|
import (
|
||
|
|
"os"
|
||
|
|
|
||
|
|
"github.com/tlinden/epuppy/cmd"
|
||
|
|
)
|
||
|
|
|
||
|
|
func main() {
|
||
|
|
os.Exit(Main())
|
||
|
|
}
|
||
|
|
|
||
|
|
func Main() int {
|
||
|
|
return cmd.Execute(os.Stdout)
|
||
|
|
}
|