module userauth.services.fconnect;

import userauth.userauth;

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

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