1
0
Fork 0
forked from lthn/LEM
LEM/main.go

13 lines
176 B
Go
Raw Normal View History

package main
import (
"forge.lthn.ai/core/go/pkg/cli"
"forge.lthn.ai/lthn/lem/cmd/lemcmd"
)
func main() {
cli.Main(
cli.WithCommands("lem", lemcmd.AddLEMCommands),
)
}