mirror of
https://github.com/deepseek-ai/3FS
synced 2025-06-26 18:16:45 +00:00
9 lines
270 B
C++
9 lines
270 B
C++
#include "common/app/TwoPhaseApplication.h"
|
|
#include "memory/common/OverrideCppNewDelete.h"
|
|
#include "storage/service/StorageServer.h"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
using namespace hf3fs;
|
|
return TwoPhaseApplication<storage::StorageServer>().run(argc, argv);
|
|
}
|