flippy 0.4.3

Automates upgrades and pulls remote databases, files, and firmware for the Flipper Zero
1
2
3
4
5
6
7
8
9
10
11
use serde::{Deserialize, Serialize};
use uuid::Uuid;

use super::mapping::Mappings;

#[derive(Serialize, Deserialize, Debug)]
pub struct Repository {
    pub url: String,
    pub uuid: Uuid,
    pub mappings: Mappings,
}