progress-pile/dpts-core/src/graphql/mutation.rs

10 lines
175 B
Rust
Raw Normal View History

2025-05-06 14:44:57 +09:00
use async_graphql::*;
pub struct Mutation;
#[Object]
impl Mutation {
async fn login(&self, username:String, password: String) -> Result<String> {
todo!()
}
}