Implement scanning project dirs

This commit is contained in:
2024-08-13 09:34:15 +02:00
parent 9a8f1c3dbd
commit 4b9f968b49
2 changed files with 36 additions and 8 deletions

View File

@@ -3,13 +3,13 @@ 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"`
}
type Workspace struct {
ID string `json:"id"`
ConfigPath string `json:"configPath"`
}