mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-14 19:27:58 +08:00
47de83c7d1
- Move from pkg/eval/mods to pkg/mods - Introduce mods.AddTo that adds all standard library modules - Move epm and readline-binding into their own packages
20 lines
603 B
Go
20 lines
603 B
Go
//go:build windows || plan9 || js
|
|
// +build windows plan9 js
|
|
|
|
// Package unix exports an Elvish namespace that contains variables and
|
|
// functions that deal with features unique to UNIX-like operating systems. On
|
|
// non-UNIX operating systems it exports an empty namespace.
|
|
package unix
|
|
|
|
import (
|
|
"src.elv.sh/pkg/eval"
|
|
)
|
|
|
|
// ExposeUnixNs indicate whether this module should be exposed as a usable
|
|
// elvish namespace.
|
|
const ExposeUnixNs = false
|
|
|
|
// Ns is an Elvish namespace that contains variables and functions that deal
|
|
// with features unique to UNIX-like operating systems. On
|
|
var Ns = &eval.Ns{}
|