kylin-connectivity/3rdparty/dsoftbus/server.cpp

15 lines
240 B
C++
Raw Normal View History

2022-09-29 20:28:54 +08:00
//
// Created by sqp on 2022/8/9.
//
#include "softbus_server_frame.h"
#include <unistd.h>
int main(){
// LOGD("[MyService] createServiceBinder call");
InitSoftBusServer();
while (1) {
pause();
}
return 0;
}