Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/pastusiak/template-go-app

Universal go lang app template (console, desktop with fyne, web, api).
https://github.com/pastusiak/template-go-app

fyne fyneapp go go-api go-app go-cli go-desktop-apps go-example go-lang golang golang-application golang-examples template-project

Last synced: 12 days ago
JSON representation

Universal go lang app template (console, desktop with fyne, web, api).

Awesome Lists containing this project

README

        

# GO LANG App Template

### Created by Przemyslaw Pastusiak
> https://github.com/pastusiak/template-go-app

---
### Usage
```
go run main.go

go build main.go
```

### Console arguments
Option list / Help
``` -? | --help```

Autorun option
``` -o ```

Shutdown application after option done
``` -q ```

### Examples
```
go run main.go -o ex1
go run main.go -q -o ex1
go run main.go -o ex2 -q
go run main.go -o ex2 -o ex1
go run main.go -o ex2 -o ex1 -q -o ex3
```