Some comment fixes

This commit is contained in:
Paul 2022-12-21 01:17:40 +00:00
parent 24a0a9f5ee
commit 321ef8b926
3 changed files with 5 additions and 5 deletions

View file

@ -118,7 +118,7 @@ func WireGuardClients(db store.IStore) echo.HandlerFunc {
}
}
// GetClients handler return a list of Wireguard client data
// GetClients handler return a JSON list of Wireguard client data
func GetClients(db store.IStore) echo.HandlerFunc {
return func(c echo.Context) error {
@ -133,7 +133,7 @@ func GetClients(db store.IStore) echo.HandlerFunc {
}
}
// GetClient handler return a of Wireguard client data
// GetClient handler returns a JSON object of Wireguard client data
func GetClient(db store.IStore) echo.HandlerFunc {
return func(c echo.Context) error {