export interface GoogleAuthOptions {
  clientID: string;
  clientSecret: string;
  callbackURL: string;
  scope: string[];
}
