File: env.go

package info (click to toggle)
pat 0.19.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,296 kB
  • sloc: javascript: 3,891; sh: 124; 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"))
}