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