16 lines
318 B
Go
16 lines
318 B
Go
package config
|
|
|
|
// Config contains loaded pipeline and session configuration.
|
|
type Config struct {
|
|
Pipeline *Pipeline
|
|
Session *Session
|
|
}
|
|
|
|
// Pipeline represents durable pipeline-level settings.
|
|
type Pipeline struct{}
|
|
|
|
// Session represents per-session inputs and metadata.
|
|
type Session struct {
|
|
SessionID string
|
|
}
|