Files
fm_be/internal/repository/mysql/actor_user.go
2026-07-16 22:16:45 +07:00

12 lines
166 B
Go

package mysql
import (
"context"
"wucher/internal/shared/pkg/appctx"
)
func actorUserIDFromContext(ctx context.Context) []byte {
return appctx.GetUserID(ctx)
}