Skip to content
Snippets Groups Projects
Program.cs 229 B
Newer Older
  • Learn to ignore specific revisions
  • Emilia's avatar
    Emilia committed
    using Lightquark.Types;
    using Lightquark.Types.EventBus;
    
    namespace Quarkcord;
    
    public class QuarkcordPlugin : IPlugin
    {
        public void Initialize(IEventBus eventBus)
        {
            throw new NotImplementedException();
        }
    }