mirror of
https://github.com/dnote/dnote
synced 2026-03-16 15:35:52 +01:00
9 lines
137 B
Go
9 lines
137 B
Go
package handlers
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func (a *App) getNoteURL(uuid string) string {
|
|
return fmt.Sprintf("%s/notes/%s", a.WebURL, uuid)
|
|
}
|