Older/WebApplication/BlogApplication.h
luocai 27ffee57be
Some checks failed
Deploy / PullDocker (push) Successful in 4s
Deploy / Build (push) Failing after 1m34s
Deploy Docker Images / Docusaurus build and Server deploy (push) Successful in 14s
add blog code.
2024-11-01 19:05:20 +08:00

11 lines
270 B
C++

#ifndef __BLOGAPPLICATION_H__
#define __BLOGAPPLICATION_H__
#include <Wt/WApplication.h>
class BlogApplication : public Wt::WApplication {
public:
BlogApplication(const Wt::WEnvironment &env, Wt::Dbo::SqlConnectionPool &blogDb);
};
#endif // __BLOGAPPLICATION_H__