-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample-structure.txt
More file actions
79 lines (78 loc) · 3.53 KB
/
Copy pathexample-structure.txt
File metadata and controls
79 lines (78 loc) · 3.53 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
example
├── go.mod
├── go.sum
├── internal
│ ├── content
│ │ ├── api
│ │ │ ├── controller
│ │ │ │ └── program_controller.go
│ │ │ ├── request
│ │ │ │ └── get_program_request.go
│ │ │ └── response
│ │ │ └── get_program_response.go
│ │ ├── application
│ │ │ ├── interface
│ │ │ │ └── program_service.go
│ │ │ ├── query
│ │ │ │ ├── program_query.go
│ │ │ │ └── programs_query.go
│ │ │ └── service
│ │ │ └── program_service.go
│ │ ├── config
│ │ │ └── config.go
│ │ └── domain
│ │ └── entity
│ │ └── program.go
│ └── management
│ ├── api
│ │ ├── controller
│ │ │ ├── configuration_controller.go
│ │ │ └── stream_controller.go
│ │ ├── request
│ │ │ ├── get_configuration_request.go
│ │ │ ├── get_stream_request.go
│ │ │ ├── patch_stream_request.go
│ │ │ ├── post_configuration_request.go
│ │ │ └── post_stream_request.go
│ │ └── response
│ │ ├── get_configuration_response.go
│ │ ├── get_stream_response.go
│ │ ├── patch_stream_response.go
│ │ ├── post_configuration_response.go
│ │ └── post_stream_response.go
│ ├── application
│ │ ├── command
│ │ │ ├── configuration_create_command.go
│ │ │ ├── configuration_update_command.go
│ │ │ ├── stream_create_command.go
│ │ │ └── stream_update_command.go
│ │ ├── interface
│ │ │ └── stream_service.go
│ │ ├── query
│ │ │ ├── configuration_query.go
│ │ │ └── stream_query.go
│ │ └── service
│ │ └── stream_service.go
│ ├── config
│ │ └── config.go
│ ├── domain
│ │ ├── entity
│ │ │ ├── configuration.go
│ │ │ └── stream.go
│ │ ├── interface
│ │ │ └── stream_service.go
│ │ ├── repository
│ │ │ ├── configuration_repository.go
│ │ │ └── stream_repository.go
│ │ ├── service
│ │ │ └── stream_service.go
│ │ └── value
│ │ └── state.go
│ └── infrastructure
│ └── persistence
│ ├── postgres
│ │ └── configuration_repository.go
│ └── redis
│ └── stream_repository.go
└── Makefile
35 directories, 42 files