├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── go.mod ├── install.sh └── lunchy.go /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/lunchy-go/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/lunchy-go/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/lunchy-go/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/lunchy-go/HEAD/README.md -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/sosedoff/lunchy-go 2 | 3 | go 1.17 4 | -------------------------------------------------------------------------------- /install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/lunchy-go/HEAD/install.sh -------------------------------------------------------------------------------- /lunchy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sosedoff/lunchy-go/HEAD/lunchy.go --------------------------------------------------------------------------------