Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func CheckAuthentication ¶
func CheckAuthentication(ctx workflow.InvocationContext) string
func Contains ¶
Contains checks if a given string is in a given list of strings. Returns true if the element was found, false otherwise.
Example:
list := []string{"a", "b", "c"}
element := "b"
contains := Contains(list, element) // contains is true
func Dedupe ¶
Dedupe removes duplicate entries from a given slice. Returns a new, deduplicated slice.
Example:
mySlice := []string{"apple", "banana", "apple", "cherry", "banana", "date"}
dedupedSlice := dedupe(mySlice)
fmt.Println(dedupedSlice) // Output: [apple banana cherry date]
func IsValidUUID ¶
func SemverCompare ¶
SemverCompare compares two semantic version strings.
func WriteToFile ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.