mirror of
https://github.com/hay-kot/homebox.git
synced 2025-02-21 19:59:02 +00:00
10 lines
208 B
Go
10 lines
208 B
Go
package adapters
|
|
|
|
import (
|
|
"context"
|
|
|
|
"github.com/google/uuid"
|
|
)
|
|
|
|
type AdapterFunc[T any, Y any] func(context.Context, T) (Y, error)
|
|
type IDFunc[T any, Y any] func(context.Context, uuid.UUID, T) (Y, error)
|