https://github.com/noahingh/gocui-architecture
The architecture of gocui package.
https://github.com/noahingh/gocui-architecture
architecture go gocui
Last synced: 4 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 (over 5 years ago)
- Default Branch: master
- Last Pushed: 2020-03-04T00:39:50.000Z (over 5 years ago)
- Last Synced: 2025-03-27T03:18:42.259Z (4 months ago)
- Topics: architecture, go, gocui
- Language: Go
- Size: 7.81 KB
- Stars: 0
- Watchers: 0
- 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
...
```