15 lines
172 B
Go
15 lines
172 B
Go
package config
|
|
|
|
import "log/slog"
|
|
|
|
type Log struct {
|
|
Level slog.Level
|
|
|
|
FilePath string
|
|
|
|
TextOutput bool
|
|
StdoutEnabled bool
|
|
FileEnabled bool
|
|
FluentEnabled bool
|
|
}
|