module userauth.services.google;

import userauth.userauth;

class GoogleAuthService : UserAuthService {
	string generateAuthMixin(HTTPServerRequest req, string path_prefix)
	{
		assert(false);
	}

	void registerRoutes(URLRouter router, string path_prefix)
	{
		assert(false);
	}
}