Improve tag endpoint

This commit is contained in:
Tobias Reisinger 2024-04-19 18:21:14 +02:00
parent 8215461e0d
commit bb76e3db4d
Signed by: serguzim
GPG key ID: 13AD60C237A28DFE
7 changed files with 147 additions and 12 deletions
emgauwa-lib/src/models

View file

@ -1,12 +1,14 @@
mod controller;
mod relay;
mod schedule;
mod tag;
pub use controller::Controller;
pub use relay::Relay;
pub use schedule::Schedule;
use sqlx::pool::PoolConnection;
use sqlx::Sqlite;
pub use tag::Tag;
use crate::errors::DatabaseError;