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, 0 insertions, 15 deletions
diff --git a/internal/server/option.go b/internal/server/option.go
deleted file mode 100644
index 2712d8a..0000000
--- a/internal/server/option.go
+++ /dev/null
@@ -1,15 +0,0 @@
-package server
-
-type NixValue struct {
-	Type string `json:"_type"`
-	Text string `json:"text"`
-}
-
-type Option struct {
-	Declarations []string
-	Default      NixValue
-	Description  string
-	Example      NixValue
-	ReadOnly     bool
-	Type         string `json:"type"`
-}