Skip to main content

rocie_client/
lib.rs

1#![allow(unused_imports)]
2#![allow(clippy::too_many_arguments)]
3
4// rocie - An enterprise grocery management system
5//
6// Copyright (C) 2026 Benedikt Peetz <benedikt.peetz@b-peetz.de>
7// SPDX-License-Identifier: GPL-3.0-or-later
8//
9// This file is part of Rocie.
10//
11// You should have received a copy of the License along with this program.
12// If not, see <https://www.gnu.org/licenses/gpl-3.0.txt>.
13
14extern crate reqwest;
15extern crate serde;
16extern crate serde_json;
17extern crate serde_repr;
18extern crate url;
19
20pub mod apis;
21pub mod implies;
22pub mod models;