Advertisement
Guest User

Untitled

a guest
Jun 25th, 2019
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. public void Configure(IApplicationBuilder app, IHostingEnvironment env)
  2. {
  3. app.UseSwagger();
  4. app.UseSwaggerUI(c =>
  5. {
  6. c.SwaggerEndpoint("/swagger/v1/swagger.json", "Demo API V1");
  7. });
  8. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement