mirror of
https://github.com/simtactics/mysimulation.git
synced 2025-03-15 14:51:21 +00:00
- NioTSO client isn't needed because we're using RayLib - Added FreeSO's API server to handle most backend operations
14 lines
348 B
C#
Executable file
14 lines
348 B
C#
Executable file
using FSO.Server.Database.DA;
|
|
using Ninject.Modules;
|
|
|
|
namespace FSO.Server.Database
|
|
{
|
|
public class DatabaseModule : NinjectModule
|
|
{
|
|
public override void Load()
|
|
{
|
|
//TODO: If we add more drivers make this a provider
|
|
this.Bind<IDAFactory>().To<MySqlDAFactory>().InSingletonScope();
|
|
}
|
|
}
|
|
}
|