workflow-sample-go/cmd/sample/main.go

16 lines
241 B
Go
Raw Permalink Normal View History

2025-06-17 15:45:03 +10:00
package main
import (
"fmt"
2025-06-17 15:58:46 +10:00
"repobase.net/j/workflow-sample-go/internal/greet"
"repobase.net/j/workflow-sample-go/pkg/util"
2025-06-17 15:45:03 +10:00
)
func main() {
name := "World"
message := greet.Hello(name)
fmt.Println(message)
util.PrintVersion()
}