This commit is contained in:
Tobias Reisinger 2019-11-15 01:23:43 +01:00
commit d8ad2c205a
12 changed files with 253 additions and 0 deletions

12
main.c Normal file
View file

@ -0,0 +1,12 @@
#include <models/controller.h>
int
main(int argc, char** argv)
{
(void)argc;
(void)argv;
controller *this = controller_read();
controller_save(this);
return 0;
}