feat(core): remove tanzaku alias field

This commit is contained in:
2022-12-23 15:35:18 +03:00
parent 68c17f0785
commit 91a53fa703
2 changed files with 2 additions and 11 deletions
+1 -2
View File
@@ -28,7 +28,6 @@ typedef struct tanzaku {
uint64_t created_ts; // Tanzaku creation timestamp
uint64_t modified_ts; // Tanzaku last modification timestamp
char *name; // Tanzaku name
char *alias; // Tanzaku alias
char *description; // Tanzaku description
} Tanzaku;
@@ -133,7 +132,7 @@ int sappyou_open(Sappyou *sappyou, const char *path);
int sappyou_dump(Sappyou *sappyou, const char *path);
// Add new tanzaku to sappyou
int tanzaku_add(Sappyou *sappyou, const char *name, const char *alias, const char *description);
int tanzaku_add(Sappyou *sappyou, const char *name, const char *description);
// Remove tanzaku from sappyou
int tanzaku_rem(Sappyou *sappyou, uint64_t tanzaku_id);