Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/noahingh/gocui-architecture
The architecture of gocui package.
https://github.com/noahingh/gocui-architecture
architecture go gocui
Last synced: about 2 months ago
JSON representation
The architecture of gocui package.
- Host: GitHub
- URL: https://github.com/noahingh/gocui-architecture
- Owner: noahingh
- License: mit
- Created: 2020-03-03T16:16:58.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-04T00:39:50.000Z (almost 5 years ago)
- Last Synced: 2024-12-03T13:50:59.608Z (2 months ago)
- Topics: architecture, go, gocui
- Language: Go
- Size: 7.81 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# gocui architecture
## Goal
Benchmarking `k9s` logic and also adapt clean architecture into CUI.
## Structure
The manager in `ui` package has the responsibility for UI stuff and it utilize the `service` pkg to manufacture data stuff.
```shell
├── internal
│ └── ui
│ ├── editor.go
│ └── manager.go
└── pkg
├── service
│ ├── interface.go
│ └── service.go
...
```