module userauth.services.twitter;

import userauth.userauth;

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

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