mirror of
git://opensimulator.org/git/opensim
synced 2026-08-15 01:22:15 +00:00
15 lines
328 B
C#
15 lines
328 B
C#
using System;
|
|
using OpenSim.Framework.Servers;
|
|
|
|
namespace OpenSim.Grid.Framework
|
|
{
|
|
public interface IGridServiceModule
|
|
{
|
|
void Close();
|
|
void Initialise(IGridServiceCore core);
|
|
void PostInitialise();
|
|
void RegisterHandlers(BaseHttpServer httpServer);
|
|
string Name { get; }
|
|
}
|
|
}
|