💾 Archived View for tilde.team › ~eikonal › cgidemo › test6x › test62.go captured on 2024-08-18 at 18:14:45.

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("62 Certificate Invalid\r\n")
	} else {
		fmt.Print("60 Please Attach Certificate\r\n")
	}
}