src.elv.sh@v0.21.0-dev.0.20240515223629-06979efb9a2a/pkg/mods/unix/non_unix.go (about)

     1  //go:build !unix
     2  
     3  package unix
     4  
     5  import (
     6  	"src.elv.sh/pkg/eval"
     7  )
     8  
     9  // ExposeUnixNs indicate whether this module should be exposed as a usable
    10  // elvish namespace.
    11  const ExposeUnixNs = false
    12  
    13  // Ns is an Elvish namespace that contains variables and functions that deal
    14  // with features unique to Unix-like operating systems.
    15  var Ns = &eval.Ns{}