1 2 3 4 5 6 7 8 9 10 11 12
package cli import ( "fmt" "io" ) // Run is the CLI entry point; returns a process exit code. func Run(args []string, stdin io.Reader, stdout, stderr io.Writer) int { fmt.Fprintln(stdout, "lectio: not yet implemented") return 0 }