1
0
This commit is contained in:
Debug_pro
2026-06-07 18:19:53 +03:00
commit fb13e5a20a
33 changed files with 2382 additions and 0 deletions

13
App.xaml.cs Normal file
View File

@@ -0,0 +1,13 @@
using System.Windows;
using SimpleWiki.Data;
namespace SimpleWiki;
public partial class App : Application
{
protected override void OnStartup(StartupEventArgs e)
{
DbInitializer.Initialize();
base.OnStartup(e);
}
}