Files
CocoaTweet/src/cocoatweet/authentication/plain.h
T
2022-04-23 18:04:03 +09:00

11 lines
271 B
C++

#ifndef COCOATWEET_AUTHENTICATION_PLAIN_H
#define COCOATWEET_AUTHENTICATION_PLAIN_H
#include <cocoatweet/authentication/authenticator.h>
namespace CocoaTweet::Authentication {
class Plain : public AuthenticatorBase {};
} // namespace CocoaTweet::Authentication
#endif