File: env.go

package info (click to toggle)
pat 0.19.2-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,228 kB
  • sloc: javascript: 3,864; sh: 147; makefile: 11
file content (13 lines) | stat: -rw-r--r-- 192 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
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"))
}