go.starlark.net@v0.0.0-20231101134539-556fd59b42f6/starlarkjson/json.go (about) 1 // Copyright 2020 The Bazel 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 starlarkjson is an alias for go.starlark.net/lib/json to provide 6 // backwards compatibility 7 // 8 // Deprecated: use go.starlark.net/lib/json instead 9 package starlarkjson // import "go.starlark.net/starlarkjson" 10 11 import ( 12 "go.starlark.net/lib/json" 13 ) 14 15 // Module is an alias of json.Module for backwards import compatibility 16 var Module = json.Module