diff options
author | crupest <crupest@outlook.com> | 2020-11-26 23:43:11 +0800 |
---|---|---|
committer | crupest <crupest@outlook.com> | 2020-11-26 23:43:11 +0800 |
commit | c2ca954fc8bc0f12ad2ece715cb6c4a633a23119 (patch) | |
tree | e095e0583b927472d04af4e9546a7e78277a04d2 /BackEnd/Timeline/Services/TimelinePostService.cs | |
parent | 43ac8b704e47e05d259f35d0a9cdb4de6c787ee5 (diff) | |
download | timeline-c2ca954fc8bc0f12ad2ece715cb6c4a633a23119.tar.gz timeline-c2ca954fc8bc0f12ad2ece715cb6c4a633a23119.tar.bz2 timeline-c2ca954fc8bc0f12ad2ece715cb6c4a633a23119.zip |
refactor: ...
Diffstat (limited to 'BackEnd/Timeline/Services/TimelinePostService.cs')
-rw-r--r-- | BackEnd/Timeline/Services/TimelinePostService.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/BackEnd/Timeline/Services/TimelinePostService.cs b/BackEnd/Timeline/Services/TimelinePostService.cs index 36fcdbca..a1176a68 100644 --- a/BackEnd/Timeline/Services/TimelinePostService.cs +++ b/BackEnd/Timeline/Services/TimelinePostService.cs @@ -1,4 +1,6 @@ using Microsoft.EntityFrameworkCore;
+using Microsoft.Extensions.Logging;
+using SixLabors.ImageSharp;
using System;
using System.Collections.Generic;
using System.Globalization;
@@ -8,9 +10,7 @@ using Timeline.Entities; using Timeline.Helpers;
using Timeline.Models;
using Timeline.Services.Exceptions;
-using SixLabors.ImageSharp;
using static Timeline.Resources.Services.TimelineService;
-using Microsoft.Extensions.Logging;
namespace Timeline.Services
{
|