github.com/GuanceCloud/cliutils@v1.1.21/point/init.go (about)

     1  // Unless explicitly stated otherwise all files in this repository are licensed
     2  // under the MIT License.
     3  // This product includes software developed at Guance Cloud (https://www.guance.com/).
     4  // Copyright 2021-present Guance, Inc.
     5  
     6  //nolint:gochecknoinits
     7  package point
     8  
     9  import "github.com/influxdata/influxdb1-client/models"
    10  
    11  func init() {
    12  	loadEnvs()
    13  
    14  	// Enable unsigned int for line-protocol, we do not use
    15  	// influxdb 1.x any more.
    16  	models.EnableUintSupport()
    17  
    18  	// add more...
    19  }