github.com/turbot/steampipe@v1.7.0-rc.0.0.20240517123944-7cef272d4458/pkg/db/db_common/server_settings.go (about)

     1  package db_common
     2  
     3  import (
     4  	"time"
     5  )
     6  
     7  type ServerSettings struct {
     8  	StartTime        time.Time `db:"start_time"`
     9  	SteampipeVersion string    `db:"steampipe_version"`
    10  	FdwVersion       string    `db:"fdw_version"`
    11  	CacheMaxTtl      int       `db:"cache_max_ttl"`
    12  	CacheMaxSizeMb   int       `db:"cache_max_size_mb"`
    13  	CacheEnabled     bool      `db:"cache_enabled"`
    14  }