more constants

This commit is contained in:
jandre 2021-02-17 22:08:47 +01:00
parent 49a489cd97
commit 69128181ef
2 changed files with 8 additions and 0 deletions

View File

@ -34,6 +34,10 @@ import (
formolutils "github.com/desmo999r/formol/pkg/utils"
)
var (
RESTORESESSION = "restoresession"
)
// RestoreSessionReconciler reconciles a RestoreSession object
type RestoreSessionReconciler struct {
client.Client

View File

@ -7,6 +7,10 @@ import (
"strings"
)
const (
FORMOLCLI string = "desmo999r/formolcli:latest"
)
func ContainsString(slice []string, s string) bool {
for _, item := range slice {
if item == s {