Skip to content

Instantly share code, notes, and snippets.

@gistlyn
Created June 21, 2021 10:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save gistlyn/9ddbb501722455f2dacc7599ba36ec2a to your computer and use it in GitHub Desktop.
Save gistlyn/9ddbb501722455f2dacc7599ba36ec2a to your computer and use it in GitHub Desktop.
openapi
using ServiceStack;
using ServiceStack.Api.OpenApi;
namespace MyApp
{
public class ConfigureOpenApi : IConfigureAppHost
{
public void Configure(IAppHost appHost)
{
appHost.Plugins.Add(new OpenApiFeature());
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment