This commit is contained in:
cubixle
2021-06-18 21:50:28 +01:00
parent 93a51d9365
commit ea33f7060b
2 changed files with 19 additions and 10 deletions
+7 -2
View File
@@ -1,6 +1,6 @@
# Tuugen
Tuugen takes a tuugen.yml and a grpc proto definition to generate common boiler plate logic. Some of the common boiler plate it generates is http routes, grpc service, data model structs and a main file with some default plumbing.
Tuugen takes a tuugen.yml and a grpc proto definition to generate common boiler plate logic. Some of the common boiler plate it generates is http routes, grpc service, basic data model structs and a main file with some default plumbing.
Tuugen adds an interactor package which the http and grpc transport layers use for business logic.
@@ -43,4 +43,9 @@ data_models:
type: varchar
- name: name
type: varchar
```
```
## TODO
- [ ] http routes
- [ ] improve data model to struct. add more types.