package engine import ( "crypto/sha256" "fmt" ) func GenContainerPrefix(jobtype string) string { return fmt.Sprintf("minifaas-%x-", sha256.Sum224([]byte(jobtype))) }