12345678910111213141516171819202122 |
- package app
- type Config struct {
- DifyURL string `envconfig:"DIFY_URL"`
- DifyCallingKey string `envconfig:"DIFY_CALLING_KEY"`
- DifyCallingPort int16 `envconfig:"DIFY_CALLING_PORT"`
- PluginHost string `envconfig:"PLUGIN_HOST"`
- PluginPort int16 `envconfig:"PLUGIN_PORT"`
- StoragePath string `envconfig:"STORAGE_PATH"`
- Platform string `envconfig:"PLATFORM"`
- RoutinePoolSize int `envconfig:"ROUTINE_POOL_SIZE"`
- }
- const (
- PLATFORM_LOCAL = "local"
- PLATFORM_AWS_LAMBDA = "aws_lambda"
- )
|