mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-10-31 17:50:01 +00:00
9 lines
158 B
Rust
9 lines
158 B
Rust
|
use crate::schema::secret;
|
||
|
|
||
|
#[derive(Queryable, Identifiable, Clone)]
|
||
|
#[table_name = "secret"]
|
||
|
pub struct Secret {
|
||
|
pub id: i32,
|
||
|
pub jwt_secret: String,
|
||
|
}
|