mirror of
https://github.com/coder/coder.git
synced 2025-07-09 11:45:56 +00:00
9 lines
151 B
Go
9 lines
151 B
Go
package usershell
|
|
|
|
import "os"
|
|
|
|
// Get returns the $SHELL environment variable.
|
|
func Get(_ string) (string, error) {
|
|
return os.Getenv("SHELL"), nil
|
|
}
|