DEVELOPMENT ENVIRONMENT

~liljamo/deck-builder

ref: 15a0cdfe722e1cb5a06eef2bfee7fa69de4dca66 deck-builder/api/src/actions/game/all_forming.rs -rw-r--r-- 356 bytes
15a0cdfeJonni Liljamo feat(api): stubs for most game endpoints, complete create 1 year, 9 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/*
 * This file is part of laurelin/api
 * Copyright (C) 2023 Jonni Liljamo <jonni@liljamo.com>
 *
 * Licensed under GPL-3.0-only.
 * See LICENSE for licensing information.
 */

use diesel::PgConnection;
use laurelin_shared::error::api::APIError;

pub(crate) fn all_forming(conn: &mut PgConnection) -> Result<(), APIError> {
    Err(APIError::Undefined)
}