2023-10-14 22:39:39 +02:00
|
|
|
use serde::{Deserialize, Serialize};
|
2023-10-14 22:39:44 +02:00
|
|
|
use std::fmt::{Display, Formatter};
|
2023-10-14 22:39:39 +02:00
|
|
|
|
2023-10-14 22:39:43 +02:00
|
|
|
#[derive(Debug, Clone, Serialize, Deserialize)]
|
2023-10-14 22:39:51 +02:00
|
|
|
pub struct Extension {}
|
2023-10-14 22:39:43 +02:00
|
|
|
|
2023-10-14 22:39:51 +02:00
|
|
|
impl Display for Extension {
|
2023-10-14 22:39:43 +02:00
|
|
|
fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
|
|
|
|
write!(f, "")
|
|
|
|
}
|
2023-10-14 22:39:44 +02:00
|
|
|
}
|