LearnGO/go/pkg/mod/go.starlark.net@v0.0.0-20231101134539-556fd59b42f6/starlarkjson/json.go
2024-09-19 21:38:24 -04:00

17 lines
521 B
Go

// Copyright 2020 The Bazel Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Package starlarkjson is an alias for go.starlark.net/lib/json to provide
// backwards compatibility
//
// Deprecated: use go.starlark.net/lib/json instead
package starlarkjson // import "go.starlark.net/starlarkjson"
import (
"go.starlark.net/lib/json"
)
// Module is an alias of json.Module for backwards import compatibility
var Module = json.Module