mirror of
https://github.com/warmbly/warmbly.git
synced 2026-08-19 08:01:16 +00:00
12 lines
181 B
Go
12 lines
181 B
Go
package models
|
|
|
|
import (
|
|
"github.com/meszmate/apple-go"
|
|
"github.com/meszmate/google-go"
|
|
)
|
|
|
|
type ExternalAuth struct {
|
|
AppleAuth apple.AppleAuth
|
|
GoogleAuth *google.GoogleAuth
|
|
}
|