diff --git a/OpenSim/Grid/Framework/IGridServiceModule.cs b/OpenSim/Grid/Framework/IGridServiceModule.cs new file mode 100644 index 0000000000..6891bebc36 --- /dev/null +++ b/OpenSim/Grid/Framework/IGridServiceModule.cs @@ -0,0 +1,13 @@ +using System; +using OpenSim.Framework.Servers; + +namespace OpenSim.Grid.Framework +{ + public interface IGridServiceModule + { + void Close(); + void Initialise(IUGAIMCore core); + void PostInitialise(); + void RegisterHandlers(BaseHttpServer httpServer); + } +}