meti-backend/internal/middleware/user_processor.go

13 lines
215 B
Go
Raw Permalink Normal View History

2025-08-09 15:08:26 +07:00
package middleware
import (
"context"
"eslogad-be/internal/contract"
"github.com/google/uuid"
)
type UserProcessor interface {
GetUserByID(ctx context.Context, id uuid.UUID) (*contract.UserResponse, error)
}