http urls monitor.

json.go 321B

12345678910111213141516
  1. // Copyright 2017 Bo-Yi Wu. All rights reserved.
  2. // Use of this source code is governed by a MIT style
  3. // license that can be found in the LICENSE file.
  4. // +build !jsoniter
  5. package json
  6. import "encoding/json"
  7. var (
  8. Marshal = json.Marshal
  9. MarshalIndent = json.MarshalIndent
  10. NewDecoder = json.NewDecoder
  11. )