mirror of
https://github.com/keymanapp/keyman.git
synced 2026-08-08 09:55:32 +00:00
10 lines
184 B
C++
10 lines
184 B
C++
#include "KeymanSystemService.h"
|
|
|
|
int main(int argc, char *argv[]) {
|
|
KeymanSystemService dbusService;
|
|
if (dbusService.Failed()) {
|
|
return 1;
|
|
}
|
|
|
|
return dbusService.Loop();
|
|
}
|