From e8369e127cc2a8f554e02717026fb133c6605d56 Mon Sep 17 00:00:00 2001 From: Adam Snyder Date: Sun, 23 Jun 2024 19:20:35 -0700 Subject: [PATCH] chore: add types package doc --- internal/lsp/types/doc.go | 3 +++ 1 file changed, 3 insertions(+) create mode 100644 internal/lsp/types/doc.go diff --git a/internal/lsp/types/doc.go b/internal/lsp/types/doc.go new file mode 100644 index 0000000..bad6929 --- /dev/null +++ b/internal/lsp/types/doc.go @@ -0,0 +1,3 @@ +// Package types contains the Language Server Protocol specification types. +// See https://microsoft.github.io/language-server-protocol/specifications/lsp/3.17/specification/. +package types