Files
steampipe/pkg/db/db_common/server_settings.go

15 lines
367 B
Go

package db_common
import (
"time"
)
type ServerSettings struct {
StartTime time.Time `db:"start_time"`
SteampipeVersion string `db:"steampipe_version"`
FdwVersion string `db:"fdw_version"`
CacheMaxTtl int `db:"cache_max_ttl"`
CacheMaxSizeMb int `db:"cache_max_size_mb"`
CacheEnabled bool `db:"cache_enabled"`
}