getstarted_nonwindows.go 123 B

123456789
  1. //go:build !windows
  2. package lifecycle
  3. import "errors"
  4. func GetStarted() error {
  5. return errors.New("not implemented")
  6. }