-
Notifications
You must be signed in to change notification settings - Fork 3.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(server/v2): add swagger server component (#23486)
(cherry picked from commit 0cc73ba) # Conflicts: # server/v2/CHANGELOG.md # server/v2/api/grpcgateway/handler.go # server/v2/api/grpcgateway/server.go # server/v2/api/telemetry/server.go # simapp/v2/simdv2/cmd/commands.go
- Loading branch information
1 parent
36e0cbe
commit de9265e
Showing
14 changed files
with
3,506 additions
and
2,649 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,19 @@ | ||
package docs | ||
|
||
import "embed" | ||
import ( | ||
"embed" | ||
"io/fs" | ||
) | ||
|
||
//go:embed swagger-ui | ||
var SwaggerUI embed.FS | ||
|
||
// GetSwaggerFS returns the embedded Swagger UI filesystem | ||
func GetSwaggerFS() fs.FS { | ||
root, err := fs.Sub(SwaggerUI, "swagger-ui") | ||
if err != nil { | ||
panic(err) | ||
} | ||
|
||
return root | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,12 @@ | ||
<!doctype html> <!-- Important: must specify --> | ||
<!DOCTYPE html> | ||
<html> | ||
<head> | ||
<meta charset="utf-8"> <!-- Important: rapi-doc uses utf8 characters --> | ||
<meta charset="utf-8" /> | ||
<!-- Important: rapi-doc uses utf8 characters --> | ||
<script type="module" src="rapidoc-min.js"></script> | ||
</head> | ||
<body> | ||
<rapi-doc spec-url = "swagger.yaml"> </rapi-doc> | ||
<rapi-doc spec-url="swagger.yaml" server-url="http://localhost:1317"> | ||
</rapi-doc> | ||
</body> | ||
</html> |
Oops, something went wrong.