13 lines
222 B
Rust
13 lines
222 B
Rust
|
// SPDX-FileCopyrightText: 2024 Aravinth Manivannan <realaravinth@batsense.net>
|
||
|
//
|
||
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
||
|
|
||
|
mod billing;
|
||
|
mod inventory;
|
||
|
mod ordering;
|
||
|
mod identity;
|
||
|
|
||
|
fn main() {
|
||
|
println!("foo");
|
||
|
}
|