refactor: move DateFormatter to child ns

This commit is contained in:
Oliver Booth 2023-08-11 21:34:04 +01:00
parent 034bd66b29
commit 6f7fa67135
Signed by: oliverbooth
GPG Key ID: 725DB725A0D9EE61
2 changed files with 2 additions and 1 deletions

View File

@ -1,7 +1,7 @@
using System.Globalization;
using SmartFormat.Core.Extensions;
namespace OliverBooth;
namespace OliverBooth.Formatting;
/// <summary>
/// Represents a SmartFormat formatter that formats a date.

View File

@ -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;