You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This underneath the cover creates paths like /IApi/*, but the client is shielded from having to know the details and instead can just call using the established interface:
Given a record or class-based
IApi
definition, one usually injects it into the server's routes via:This underneath the cover creates paths like
/IApi/*
, but the client is shielded from having to know the details and instead can just call using the established interface:However, it would be beneficial to be able to customize how the various RPCs in the supplied service record/class are exposed.
Proposal: allow
[<EndPoint>]
on the RPC type to override the URL prefix for the service group (so changing/IApi/*
to/api/*
):The text was updated successfully, but these errors were encountered: