mirror of
https://github.com/goatcorp/Dalamud.git
synced 2025-12-12 10:17:22 +01:00
20 lines
448 B
C#
20 lines
448 B
C#
using System;
|
|
|
|
// ReSharper disable once CheckNamespace
|
|
namespace Dalamud;
|
|
|
|
// TODO: Get rid of this! Move StartInfo to another assembly, make this good
|
|
|
|
/// <summary>
|
|
/// Class to initialize Service<T>s.
|
|
/// </summary>
|
|
internal static class ServiceManager
|
|
{
|
|
/// <summary>
|
|
/// Indicates that the class is a service.
|
|
/// </summary>
|
|
[AttributeUsage(AttributeTargets.Class)]
|
|
public class Service : Attribute
|
|
{
|
|
}
|
|
}
|