mirror of
https://github.com/la5nta/pat
synced 2026-08-13 17:46:54 -04:00
14 lines
192 B
Go
14 lines
192 B
Go
|
|
package cli
|
||
|
|
|
||
|
|
import (
|
||
|
|
"context"
|
||
|
|
"fmt"
|
||
|
|
"strings"
|
||
|
|
|
||
|
|
"github.com/la5nta/pat/app"
|
||
|
|
)
|
||
|
|
|
||
|
|
func EnvHandle(_ context.Context, app *app.App, _ []string) {
|
||
|
|
fmt.Println(strings.Join(app.Env(), "\n"))
|
||
|
|
}
|