/* * This file is part of laurelin/api * Copyright (C) 2023 Jonni Liljamo * * Licensed under GPL-3.0-only. * See LICENSE for licensing information. */ use diesel::PgConnection; use laurelin_shared::error::api::APIError; pub(crate) fn join(conn: &mut PgConnection) -> Result<(), APIError> { Err(APIError::Undefined) }