github.com/primecitizens/pcz/std@v0.2.1/core/sys/envv_wtf16.go (about)

     1  // SPDX-License-Identifier: Apache-2.0
     2  // Copyright 2023 The Prime Citizens
     3  
     4  //go:build !noos && windows
     5  
     6  package sys
     7  
     8  var (
     9  	envs []string
    10  )
    11  
    12  func nthenv(i int) string {
    13  	return envs[i]
    14  }