mirror of
https://gitlab.computer.surgery/matrix/grapevine.git
synced 2025-12-17 15:51:23 +01:00
fix mod/use order
This commit is contained in:
parent
f8961d5578
commit
6024f866e3
1 changed files with 4 additions and 2 deletions
|
|
@ -1,7 +1,5 @@
|
|||
mod data;
|
||||
use std::io::Cursor;
|
||||
|
||||
pub(crate) use data::Data;
|
||||
use image::imageops::FilterType;
|
||||
use tokio::{
|
||||
fs::File,
|
||||
|
|
@ -10,6 +8,10 @@ use tokio::{
|
|||
|
||||
use crate::{services, Result};
|
||||
|
||||
mod data;
|
||||
|
||||
pub(crate) use data::Data;
|
||||
|
||||
pub(crate) struct FileMeta {
|
||||
pub(crate) content_disposition: Option<String>,
|
||||
pub(crate) content_type: Option<String>,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue