25 lines
580 B
Markdown
25 lines
580 B
Markdown
# WhspBrd
|
|
|
|
- Run main loop, for now
|
|
|
|
```shell
|
|
go run cmd/tui/main.go
|
|
```
|
|
|
|
## File structure
|
|
|
|
- may be edited in accordance with [this project standard](https://github.com/golang-standards/project-layout)
|
|
|
|
### pkg
|
|
|
|
- reusable modules in other projects and used imports, like image manipulation, systray configuration etc...
|
|
|
|
### cmd
|
|
|
|
- future command line application structure using cobra in cli folder
|
|
- tui in tui folder, makes sense huh
|
|
|
|
### internal
|
|
|
|
- code that is not reusable and we don't want to share it with others, maybe parts of code in cmd will be moved here instead
|