12 lines
213 B
Go
Raw Normal View History

2025-07-18 20:10:29 +07:00
package middleware
import (
"apskel-pos-be/internal/models"
"context"
"github.com/google/uuid"
)
type UserProcessor interface {
GetUserByID(ctx context.Context, id uuid.UUID) (*models.UserResponse, error)
}