diff --git a/OliverBooth/DateFormatter.cs b/OliverBooth/Formatting/DateFormatter.cs similarity index 96% rename from OliverBooth/DateFormatter.cs rename to OliverBooth/Formatting/DateFormatter.cs index 292143f..d70d970 100644 --- a/OliverBooth/DateFormatter.cs +++ b/OliverBooth/Formatting/DateFormatter.cs @@ -1,7 +1,7 @@ using System.Globalization; using SmartFormat.Core.Extensions; -namespace OliverBooth; +namespace OliverBooth.Formatting; /// /// Represents a SmartFormat formatter that formats a date. diff --git a/OliverBooth/Services/TemplateService.cs b/OliverBooth/Services/TemplateService.cs index f0bef6e..e678c9d 100644 --- a/OliverBooth/Services/TemplateService.cs +++ b/OliverBooth/Services/TemplateService.cs @@ -4,6 +4,7 @@ using Markdig.Syntax; using Microsoft.EntityFrameworkCore; using OliverBooth.Data; using OliverBooth.Data.Web; +using OliverBooth.Formatting; using OliverBooth.Markdown.Template; using SmartFormat; using SmartFormat.Extensions;