about summary refs log tree commit diff stats
path: root/internal/server/option.go
diff options
context:
space:
mode:
Diffstat (limited to 'internal/server/option.go')
-rw-r--r--internal/server/option.go15
1 files changed, 15 insertions, 0 deletions
diff --git a/internal/server/option.go b/internal/server/option.go
new file mode 100644
index 0000000..be42689
--- /dev/null
+++ b/internal/server/option.go
@@ -0,0 +1,15 @@
+package server
+
+type NixValue struct {
+	Kind  string `json:"_type"`
+	Value string `json:"text"`
+}
+
+type Option struct {
+	Declarations []string
+	Default      NixValue
+	Description  string
+	Example      NixValue
+	ReadOnly     bool
+	Kind         string `json:"type"`
+}