Skip to content

Latest commit

 

History

History
63 lines (53 loc) · 1.54 KB

File metadata and controls

63 lines (53 loc) · 1.54 KB

Project Structure

Languages

Language Files
Go 22
Total 22

Directory Layout

├── cmd/
│   └── main.go
└── internal/
    ├── config/
    │   ├── config.go
    │   ├── validators.go
    │   └── values.go
    ├── info/
    │   ├── asset.go
    │   ├── coin.go
    │   ├── external
    │   ├── fields_validators.go
    │   ├── model.go
    │   └── values.go
    ├── manager/
    │   ├── commands.go
    │   └── manager.go
    ├── processor/
    │   ├── fixers.go
    │   ├── model.go
    │   ├── service.go
    │   └── validators.go
    ├── report/
    │   └── service.go
    └── service/
        └── service.go

Features / Modules

Feature Files Classes Interfaces Functions Endpoints
cmd 1 0 0 1 0
config 3 13 0 1 0
info 10 9 0 25 0
manager 2 0 0 9 0
processor 4 8 0 4 0
report 1 1 0 1 0
service 1 1 0 2 0

Entry Points

  • cmd/main.go (Go)

See Also