kovi-plugin-60s 0.1.3

kovi plugin
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
use serde::Deserialize;

#[derive(Deserialize, Debug)]
pub struct Response<T> {
    pub data: T
}

#[derive(Deserialize, Debug)]
pub struct News {
    pub image: String
}

#[derive(Deserialize)]
pub struct Config {
    pub url: String
}