mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 23:07:32 +00:00
15 lines
164 B
Go
15 lines
164 B
Go
package logstore
|
|
|
|
type Configs struct {
|
|
Access *Config
|
|
Execution *Config
|
|
}
|
|
|
|
type Config struct {
|
|
Stdout *StdConfig
|
|
}
|
|
|
|
type StdConfig struct {
|
|
Enabled bool
|
|
}
|