pull/652/head
Ben Meadors 2025-02-23 13:06:21 -06:00
rodzic 2a1386b151
commit f3a57add1a
1 zmienionych plików z 9 dodań i 4 usunięć

Wyświetl plik

@ -264,23 +264,28 @@ message ChannelFile {
*/ */
uint32 version = 1; uint32 version = 1;
/*
* The timestamp of the backup (if node has time)
*/
fixed32 timestamp = 2;
/* /*
* The node's configuration * The node's configuration
*/ */
LocalConfig config = 2; LocalConfig config = 3;
/* /*
* The node's module configuration * The node's module configuration
*/ */
LocalModuleConfig module_config = 3; LocalModuleConfig module_config = 4;
/* /*
* The node's channels * The node's channels
*/ */
ChannelFile channels = 4; ChannelFile channels = 5;
/* /*
* The node's user (owner) information * The node's user (owner) information
*/ */
User owner = 5; User owner = 6;
} }