mirror of
https://github.com/foomo/posh.git
synced 2025-10-16 12:45:38 +00:00
15 lines
404 B
Go
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"`
|
|
}
|
|
)
|