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