diff options
| author | 2023-12-24 04:26:00 -0600 | |
|---|---|---|
| committer | 2023-12-24 04:26:00 -0600 | |
| commit | 20d9fc5b5356a1054cb104ba6651b77184abf0db (patch) | |
| tree | 5f115d8051dad73069d3a632a6f2c260cf7efdac /src/l2su.h | |
initial commit
Diffstat (limited to 'src/l2su.h')
| -rw-r--r-- | src/l2su.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/l2su.h b/src/l2su.h new file mode 100644 index 0000000..13df852 --- /dev/null +++ b/src/l2su.h @@ -0,0 +1,17 @@ +#ifndef L2SU_MAIN_H_INCLUDED +#define L2SU_MAIN_H_INCLUDED + +#include "command.h" +#include "instance.h" + +struct l2_user_paths { + const char *config; + const char *data; +}; + +struct { + struct l2_user_paths paths; + struct l2_instance *instances; +} l2_state; + +#endif /* include guard */ |
