mirror of
https://gitlab.com/klmp200/fish.git
synced 2024-11-14 21:03:21 +00:00
10 lines
154 B
C
10 lines
154 B
C
#include <stdlib.h>
|
|
#include "fish_lib/fish_lib.h"
|
|
|
|
int main() {
|
|
/* todo load config file */
|
|
fishLoop(getSettings());
|
|
|
|
return EXIT_SUCCESS;
|
|
}
|