Files
zitadel/apps/api/internal/logstore/config.go
2025-08-05 15:20:32 -07:00

15 lines
164 B
Go

package logstore
type Configs struct {
Access *Config
Execution *Config
}
type Config struct {
Stdout *StdConfig
}
type StdConfig struct {
Enabled bool
}