...

Source file src/go.starlark.net/starlarkjson/json.go

Documentation: go.starlark.net/starlarkjson

     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/stalarkjson"
    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
    17  

View as plain text