mirror of
https://github.com/opensim/opensim.git
synced 2026-05-19 14:35:44 +08:00
14 lines
299 B
C#
14 lines
299 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);
|
|
}
|
|
}
|