mirror of
https://github.com/twofas/2fas-server.git
synced 2024-11-22 18:30:00 +01:00
11 lines
251 B
Go
11 lines
251 B
Go
package domain
|
|
|
|
import (
|
|
"github.com/google/uuid"
|
|
"github.com/twofas/2fas-server/internal/api/browser_extension/domain"
|
|
)
|
|
|
|
type DeviceBrowserExtensionRepository interface {
|
|
FindAllForDevice(deviceId uuid.UUID) ([]*domain.BrowserExtension, error)
|
|
}
|