aboutsummaryrefslogtreecommitdiff
path: root/common/src/lib.rs
blob: 417acee6065f9f1e23c178c041365a931e06b763 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/*
    This file is part of jellything (https://codeberg.org/metamuffin/jellything)
    which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
    Copyright (C) 2025 metamuffin <metamuffin.org>
*/
#![feature(phantom_variance_markers)]
pub mod api;
pub mod internal;
pub mod node;
pub mod routes;
pub mod user;

pub use jellyobject;
pub use jellystream_types as stream;

pub use api::*;
pub use node::*;
pub use user::*;