Documentation ¶
Index ¶
Constants ¶
View Source
const OriginType = "Static"
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Origin ¶
type Origin struct {
// contains filtered or unexported fields
}
func (*Origin) RefreshCache ¶ added in v0.3.0
type OriginConfig ¶
type OriginConfig struct { Schema string `yaml:"schema"` Tables []*TableConfig `yaml:"tables"` }
func (*OriginConfig) NewOrigin ¶
func (cfg *OriginConfig) NewOrigin(id string) (psqlfront.Origin, error)
func (*OriginConfig) Restrict ¶
func (cfg *OriginConfig) Restrict() error
func (*OriginConfig) Type ¶
func (cfg *OriginConfig) Type() string
type TableConfig ¶
type TableConfig struct { Name string `yaml:"name,omitempty"` Columns origin.ColumnConfigs `yaml:"columns,omitempty"` Rows [][]string `yaml:"rows,omitempty"` }
Click to show internal directories.
Click to hide internal directories.