16 lines
422 B
Go
16 lines
422 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,omitempty"`
|
|
ConfigPath string `json:"configPath,omitempty"`
|
|
}
|