posh/pkg/config/prompt.go
Kevin Franklin Kim e2ad376b6c initial commit
2023-01-03 15:37:15 +01:00

15 lines
404 B
Go

package config
type (
Prompt struct {
Title string `json:"title" yaml:"title"`
Prefix string `json:"prefix" yaml:"prefix"`
History PromptHistory `json:"history" yaml:"history"`
}
PromptHistory struct {
Limit int `json:"limit" yaml:"limit"`
Filename string `json:"filename" yaml:"filename"`
LockFilename string `json:"lockFilename" yaml:"lockFilename"`
}
)