pull-request-lint/main.go
Jan Klattenhoff 80ab70da04
All checks were successful
Lint Pull Request / Lint Pr Title (pull_request) Successful in 9s
chore: remove invoke-binary.js and update main.go logic
2025-04-09 18:11:23 +02:00

16 lines
204 B
Go

package main
import (
"fmt"
"os"
)
func main() {
// Get all environment variables
environ := os.Environ()
// Print each environment variable
for _, env := range environ {
fmt.Println(env)
}
}