Update dependencies and add unique UUID route

This commit is contained in:
Jacob Gunther
2023-05-02 19:21:07 -05:00
parent d4f88af1f8
commit 953eb04476
7 changed files with 64 additions and 1 deletions

View File

@@ -13,6 +13,7 @@ var (
Environment: "development",
Host: "127.0.0.1",
Port: 3001,
AuthKey: "",
Redis: RedisConfig{
Host: "127.0.0.1",
Port: 6379,
@@ -95,6 +96,7 @@ type Config struct {
Environment string `yaml:"environment"`
Host string `yaml:"host"`
Port uint16 `yaml:"port"`
AuthKey string `yaml:"auth_key"`
Redis RedisConfig `yaml:"redis"`
Routes RoutesConfig `yaml:"routes"`
Cache CacheConfig `yaml:"cache"`