getstarted_nonwindows.go 123 Bytes
Newer Older
mashun1's avatar
v1  
mashun1 committed
1
2
3
4
//go:build !windows

package lifecycle

xuxzh1's avatar
init  
xuxzh1 committed
5
import "errors"
mashun1's avatar
v1  
mashun1 committed
6
7

func GetStarted() error {
xuxzh1's avatar
init  
xuxzh1 committed
8
	return errors.New("not implemented")
mashun1's avatar
v1  
mashun1 committed
9
}