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