mirror of
https://github.com/SigNoz/signoz.git
synced 2025-12-18 16:07:10 +00:00
13 lines
299 B
Go
13 lines
299 B
Go
|
|
package interfaces
|
||
|
|
|
||
|
|
import (
|
||
|
|
"context"
|
||
|
|
|
||
|
|
"go.signoz.io/query-service/model"
|
||
|
|
)
|
||
|
|
|
||
|
|
type UserPreferenceDao interface {
|
||
|
|
UpdateUserPreferece(ctx context.Context, userPreferences *model.UserPreferences) *model.ApiError
|
||
|
|
FetchUserPreference(ctx context.Context) (*model.UserPreferences, *model.ApiError)
|
||
|
|
}
|