fix Dockerfile

This commit is contained in:
2025-08-09 01:24:45 +02:00
parent 5f4201428a
commit 7f55ddae7c
4 changed files with 11 additions and 5 deletions

View File

@@ -16,11 +16,11 @@ impl<'s> SaveRequest<'s> {
&self.path
}
pub fn stream(&self) -> &'s UploadFileStream {
pub fn stream(&self) -> &UploadFileStream<'s> {
&self.stream
}
pub fn stream_mut(&mut self) -> &'s mut UploadFileStream {
pub fn stream_mut(&mut self) -> &mut UploadFileStream<'s> {
&mut self.stream
}