#Regarding recent dagger version change

1 messages · Page 1 of 1 (latest)

tawdry quiver
#
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#.

polar aurora
#

We support enum values in the cli but maybe not a slice of one. Can be easily supported though.

tawdry quiver
#

it did work before though

polar aurora
#

That's because it was being interpreted as a string. Now it's interpreted as an enum.

tawdry quiver
#

ahhhh

polar aurora