8 lines
110 B
Go
8 lines
110 B
Go
package shared
|
|
|
|
import "net/http"
|
|
|
|
type AuthData struct {
|
|
AccessToken string
|
|
RefreshCookie *http.Cookie
|
|
}
|