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