2023-04-11 16:05:24 +02:00
|
|
|
package packet
|
|
|
|
|
2023-05-12 17:18:24 +02:00
|
|
|
// Metadata struct is the absolute minimum of metadata
|
2023-04-12 15:14:19 +02:00
|
|
|
type Metadata struct {
|
2023-09-17 12:49:41 +02:00
|
|
|
Name string
|
|
|
|
Revision int
|
2023-04-11 16:05:24 +02:00
|
|
|
}
|