fix: Example structure in annotationFile comment

This commit is contained in:
Ilya Kuznetsov 2024-12-17 14:16:54 +01:00
parent 6bc9664399
commit 1b31c098bf
1 changed files with 6 additions and 0 deletions

View File

@ -31,6 +31,12 @@ type annotationHandler struct {
empty annotationFile empty annotationFile
} }
/**
* Parsed file with annotations, expected format:
* github.com/databricks/cli/bundle/config.Bundle:
* cluster_id:
* description: "Description"
*/
type annotationFile map[string]map[string]annotation type annotationFile map[string]map[string]annotation
const Placeholder = "PLACEHOLDER" const Placeholder = "PLACEHOLDER"