mirror of
https://github.com/usememos/memos.git
synced 2025-06-05 22:09:59 +02:00
chore: update comments (#2195)
This commit is contained in:
@ -85,10 +85,13 @@ func NewServer(ctx context.Context, profile *profile.Profile, store *store.Store
|
|||||||
}
|
}
|
||||||
s.ID = serverID
|
s.ID = serverID
|
||||||
|
|
||||||
|
// Serve frontend.
|
||||||
embedFrontend(e)
|
embedFrontend(e)
|
||||||
|
|
||||||
// This will serve Swagger UI at /api/index.html and Swagger 2.0 spec at /api/doc.json
|
// Serve swagger in dev/demo mode.
|
||||||
e.GET("/api/*", echoSwagger.WrapHandler)
|
if profile.Mode == "dev" || profile.Mode == "demo" {
|
||||||
|
e.GET("/api/*", echoSwagger.WrapHandler)
|
||||||
|
}
|
||||||
|
|
||||||
secret := "usememos"
|
secret := "usememos"
|
||||||
if profile.Mode == "prod" {
|
if profile.Mode == "prod" {
|
||||||
|
Reference in New Issue
Block a user