chore: add healthz point

This commit is contained in:
Steven
2024-01-10 00:28:57 +08:00
parent d46e83b735
commit 4bc2a0ff42
4 changed files with 23 additions and 13 deletions

View File

@ -0,0 +1,18 @@
package postgres
import (
"fmt"
"strings"
)
func placeholder(n int) string {
return "$" + fmt.Sprint(n)
}
func placeholders(n int) string {
list := []string{}
for i := 0; i < n; i++ {
list = append(list, placeholder(i+1))
}
return strings.Join(list, ", ")
}

View File

@ -171,11 +171,3 @@ func (d *DB) DeleteMemo(ctx context.Context, delete *store.DeleteMemo) error {
}
return nil
}
func placeholders(n int) string {
list := []string{}
for i := 0; i < n; i++ {
list = append(list, fmt.Sprintf("$%d", i+1))
}
return strings.Join(list, ", ")
}

View File

@ -3,7 +3,6 @@ package postgres
import (
"context"
"errors"
"fmt"
"strings"
"github.com/yourselfhosted/slash/store"
@ -153,7 +152,3 @@ func (d *DB) DeleteUser(ctx context.Context, delete *store.DeleteUser) error {
}
return nil
}
func placeholder(n int) string {
return "$" + fmt.Sprint(n)
}