using Iceshrimp.Backend.Core.Extensions; using JetBrains.Annotations; namespace Iceshrimp.Backend.Core.Services; [UsedImplicitly] public class FlagService : ISingletonService { public AsyncLocal SupportsHtmlFormatting { get; } = new(); public AsyncLocal SupportsInlineMedia { get; } = new(); public AsyncLocal IsPleroma { get; } = new(); }