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

10 lines
No EOL
175 B
Rust

use async_graphql::*;
pub struct Mutation;
#[Object]
impl Mutation {
async fn login(&self, username:String, password: String) -> Result<String> {
todo!()
}
}