Skip to content

Commit

Permalink
feat: add env type to default configs
Browse files Browse the repository at this point in the history
  • Loading branch information
Mahanmmi committed Jan 2, 2024
1 parent 9b402bf commit 02f6552
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions pkg/config/default.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@ package config

import "time"

type EnvType string

const (
EnvTypeDev EnvType = "dev"
EnvTypeProd EnvType = "prod"
)

type Redis struct {
Address string
}
Expand Down

0 comments on commit 02f6552

Please sign in to comment.