#Regarding recent dagger version change
1 messages · Page 1 of 1 (latest)
type Language string
const (
CSharp Language = "CSharp"
Go Language = "Go"
Java Language = "Java"
Python Language = "Python"
)
...
GenerateKiotaClients(
ctx context.Context,
languages []Language, ... )
this used to work, now i replaced with []string instead
Please do bash my head if im doing go wrong though, im kinda polyglot at this point but my strength is c#.
We support enum values in the cli but maybe not a slice of one. Can be easily supported though.
it did work before though
That's because it was being interpreted as a string. Now it's interpreted as an enum.
ahhhh