after fork

This commit is contained in:
2023-04-11 22:43:48 +02:00
commit 6486bfd1c8
33 changed files with 3366 additions and 0 deletions

8
router/enums.go Normal file
View File

@ -0,0 +1,8 @@
package router
type ContentTypeType string
var (
ContentTypeRequest ContentTypeType = "request"
ContentTypeResponse ContentTypeType = "response"
)