Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

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.

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
...
```