💾 Archived View for tilde.team › ~eikonal › cgidemo › test6x › test61.go captured on 2022-06-04 at 01:35:24.

View Raw

More Information

⬅️ Previous capture (2022-03-01)

-=-=-=-=-=-=-

package main

import	(
	"fmt"
	"os"
)

func main(){
	_ , auth_present := os.LookupEnv("AUTH_TYPE")
	if auth_present {
		fmt.Print("61 Certificate Not Authorised\r\n")
	} else {
		fmt.Print("60 Please Attach Certificate\r\n")
	}
}