mirror of
https://github.com/photoprism/photoprism.git
synced 2025-09-26 21:01:58 +08:00
13 lines
158 B
Go
13 lines
158 B
Go
//go:build debug
|
|
// +build debug
|
|
|
|
package server
|
|
|
|
import (
|
|
"github.com/photoprism/photoprism/internal/api"
|
|
)
|
|
|
|
func init() {
|
|
registerApiDocs = api.GetDocs
|
|
}
|