Josh Wright
Josh Wright
@mattt Any updates on this or tips on getting started to contributing to this feature? Would love it, particularly in the coverage command; I noticed that `swift-doc coverage ...` flags...
So far what I've got is ```swift @main struct Run { static func main() { let cli = CLI(singleCommand: MyCommand()) cli.go() } } final class MyCommand: Command { var name:...
Excellent idea - this is actually in progress. Hoping to have an MVP up soon. Will keep you posted!
How do you think your needs might differ? I can try and work something specific in.
Thanks for suggestion @PangMo5 - I'd definitely love if we could support this! At one point I actually had the `@Default` functionality as you suggested but unfortunately we lost the...
Hey @lyricalsoul! Thanks for the issue and for looking into this - lack of default values is a major pain point. Is the modified @API macro you made adding default...
Thanks for the idea @F0x1d! To clarify, what's the use case you are thinking of - something like uploading a large file, such as in a multipart request?
Thanks for the feedback @KaiTheRedNinja! Great idea! I 100% agree it would be great to be able to better organize large API groups. Unfortunately macros are relatively nascent and so...
With SE-404 organizing APIs inside a type is possible now... ```swift public enum APIs { @API public protocol Foo { @GET("/bar") func bar() async throws } } let foo: APIs.Foo...