cuelang.org/go@v0.10.1/internal/golangorgx/gopls/hooks/hooks.go (about)

     1  // Copyright 2019 The Go Authors. All rights reserved.
     2  // Use of this source code is governed by a BSD-style
     3  // license that can be found in the LICENSE file.
     4  
     5  // Package hooks adds all the standard gopls implementations.
     6  // This can be used in tests without needing to use the gopls main, and is
     7  // also the place to edit for custom builds of gopls.
     8  package hooks
     9  
    10  import (
    11  	"cuelang.org/go/internal/golangorgx/gopls/settings"
    12  )
    13  
    14  func Options(options *settings.Options) {
    15  }