DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: b28fe28f5c9f760fa4810f15afb9c8443e9d25ef deck-builder/sdbclient/src/main.rs -rw-r--r-- 278 bytes
b28fe28fJonni Liljamo Basic API with register and login (#1) 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * This file is part of sdbclient
 * Copyright (C) 2022 Jonni Liljamo <jonni@liljamo.com>
 *
 * Licensed under GPL-3.0-only.
 * See LICENSE for licensing information.
 */

use bevy::{app::App, DefaultPlugins};

fn main() {
    App::new().add_plugins(DefaultPlugins).run();
}