mirror of
https://github.com/sern-handler/cli
synced 2026-06-19 06:12:21 +00:00
10 lines
108 B
Go
10 lines
108 B
Go
package initialize
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func Initialize() {
|
|
fmt.Println("Initialize a new Sern project.")
|
|
}
|