mirror of
https://github.com/go-sylixos/elvish.git
synced 2024-12-05 03:17:50 +08:00
10 lines
167 B
Go
10 lines
167 B
Go
package eval
|
|
|
|
// Pointers to functions that can be mutated for testing.
|
|
var (
|
|
GetHome = &getHome
|
|
Getwd = &getwd
|
|
OSExit = &osExit
|
|
TimeAfter = &timeAfter
|
|
)
|