nil-server-database 0.4.23

Multiplayer strategy game
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Copyright (C) Call of Nil contributors
// SPDX-License-Identifier: AGPL-3.0-only

#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc(html_favicon_url = "https://nil.dev.br/favicon.png")]
#![feature(nonpoison_mutex, str_as_str, sync_nonpoison)]

mod database;
pub mod error;
mod migration;
pub mod model;
mod schema;
pub mod sql_types;

pub use database::{BlockingDatabase, Database};