mirror of
https://github.com/LemmyNet/lemmy.git
synced 2024-11-16 01:14:02 +00:00
8 lines
158 B
Rust
8 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,
|
|
}
|