Older/Server/Database.h
2023-12-30 00:15:03 +08:00

12 lines
226 B
C++

#ifndef __DATABASE_H__
#define __DATABASE_H__
#include <string>
class Database {
public:
bool open(const std::string &path);
void addTask(uint64_t createTime, const std::string &content);
};
#endif // __DATABASE_H__