Files
arbeitszeitmessung/Backend/helper/strings.go
Tom Tröger 2eab598348
All checks were successful
Tests / Run Go Tests (push) Successful in 30s
working on printable PDF Forms
2025-09-08 00:32:29 +02:00

10 lines
126 B
Go

package helper
func GetFirst[T, U any](val T, _ U) T {
return val
}
func GetSecond[T, U any](_ T, val U) U {
return val
}