forked from ardanlabs/service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdirtree.txt
35 lines (35 loc) · 1.87 KB
/
dirtree.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
service -
├── app -
│ ├── sales-admin - Package sales-admin ...
│ │ └── commands - Package commands contains the functionality for the set of commands currently supported by the CLI tooling.
│ ├── sales-api - Package sales-api ...
│ │ ├── handlers - Package handlers contains the full set of handler functions and routes supported by the web api.
│ │ └── tests - Package tests ...
│ └── sidecar -
│ └── metrics - Package metrics ...
│ ├── collector - Package collector ...
│ └── publisher - Package publisher ...
│ ├── datadog - Package datadog ...
│ └── expvar - Package expvar ...
├── business -
│ ├── auth - Package auth provides authentication and authorization support.
│ ├── data -
│ │ ├── product - Package product contains product related CRUD functionality.
│ │ ├── schema - Package schema contains the database schema, migrations and seeding data.
│ │ │ └── sql -
│ │ └── user - Package user contains user related CRUD functionality.
│ ├── mid - Package mid contains the set of middleware functions.
│ ├── tests - Package tests contains supporting code for running tests.
│ └── validate - Package validate contains the support for validating models.
├── foundation -
│ ├── database - Package database provides support for access the database.
│ ├── keystore - Package keystore implements the auth.KeyStore interface.
│ └── web - Package web contains a small web framework extension.
└── zarf -
├── compose -
├── docker -
├── k8s -
│ ├── base -
│ ├── dev -
│ └── stg -
└── keys -