mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-07-18 03:23:07 +01:00
14 lines
281 B
C#
14 lines
281 B
C#
using Microsoft.EntityFrameworkCore;
|
|
|
|
using Tgstation.Server.Host.Database;
|
|
|
|
namespace Tgstation.Server.Host.Tests
|
|
{
|
|
sealed class MemoryDatabaseContext : DatabaseContext
|
|
{
|
|
public MemoryDatabaseContext(DbContextOptions dbContextOptions) : base(dbContextOptions)
|
|
{
|
|
}
|
|
}
|
|
}
|