10 lines
131 B
Go
10 lines
131 B
Go
|
|
//go:build !windows
|
||
|
|
|
||
|
|
package lifecycle
|
||
|
|
|
||
|
|
import "fmt"
|
||
|
|
|
||
|
|
func GetStarted() error {
|
||
|
|
return fmt.Errorf("GetStarted not implemented")
|
||
|
|
}
|