using System;
// ReSharper disable once CheckNamespace
namespace Dalamud;
// TODO: Get rid of this! Move StartInfo to another assembly, make this good
///
/// Class to initialize Service<T>s.
///
internal static class ServiceManager
{
///
/// Indicates that the class is a service.
///
[AttributeUsage(AttributeTargets.Class)]
public class Service : Attribute
{
}
}