10 lines
167 B
Go
10 lines
167 B
Go
package repositories
|
|
|
|
import (
|
|
"context"
|
|
"maot-shortner/internal/domain"
|
|
)
|
|
|
|
type LinkRepository interface {
|
|
GetLinks(ctx context.Context) ([]*domain.Link, error)
|
|
}
|