This PR sorts the order of the LLM database ID type declarations. Release Notes: - N/A
12 lines
245 B
Rust
12 lines
245 B
Rust
use sea_orm::{entity::prelude::*, DbErr};
|
|
use serde::{Deserialize, Serialize};
|
|
|
|
use crate::id_type;
|
|
|
|
id_type!(BillingEventId);
|
|
id_type!(ModelId);
|
|
id_type!(ProviderId);
|
|
id_type!(RevokedAccessTokenId);
|
|
id_type!(UsageId);
|
|
id_type!(UsageMeasureId);
|