mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-10-28 16:22:24 -05:00
[bugfix] broken nootel function signatures (#4142)
Reviewed-on: https://codeberg.org/superseriousbusiness/gotosocial/pulls/4142 Reviewed-by: Daenney <daenney@noreply.codeberg.org> Co-authored-by: kim <grufwub@gmail.com> Co-committed-by: kim <grufwub@gmail.com>
This commit is contained in:
parent
cf93d3af0a
commit
e464de1322
1 changed files with 5 additions and 2 deletions
|
|
@ -20,16 +20,19 @@
|
|||
package observability
|
||||
|
||||
import (
|
||||
"context"
|
||||
|
||||
"code.superseriousbusiness.org/gotosocial/internal/db"
|
||||
|
||||
"github.com/gin-gonic/gin"
|
||||
"github.com/uptrace/bun"
|
||||
)
|
||||
|
||||
func InitializeMetrics(db db.DB) error {
|
||||
func InitializeMetrics(ctx context.Context, db db.DB) error {
|
||||
return nil
|
||||
}
|
||||
func InitializeTracing() error {
|
||||
|
||||
func InitializeTracing(ctx context.Context) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue