Files
vsclean/types.go

16 lines
398 B
Go

package main
type Config struct {
Entries []Entry `json:"entries"`
}
type Entry struct {
FolderURI string `json:"folderUri,omitempty"`
Workspace Workspace `json:"workspace,omitempty"`
FileURI string `json:"fileUri,omitempty"`
Label string `json:"label,omitempty"`
}
type Workspace struct {
ID string `json:"id"`
ConfigPath string `json:"configPath"`
}