aboutsummaryrefslogtreecommitdiff
path: root/internal/cli/cli.go
blob: b203c4425d63dcb4f840a2f5af810db49cb2b109 (plain) (blame)
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
}