feat: add session types

This commit is contained in:
2024-07-11 00:09:29 +02:00
parent 07d2842be0
commit 490a370546
3 changed files with 21 additions and 7 deletions

View File

@@ -1,6 +1,7 @@
#include <sys/types.h>
struct session {
const char *type;
char *name;
char *path;
};