chore: normalize code
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
pub trait Crud<T, Args> {
|
||||
fn list(&self, _args: Args) -> T {
|
||||
unimplemented!("list() is not implemented for this type")
|
||||
}
|
||||
fn detail(&self, _args: Args) -> T {
|
||||
unimplemented!("detail() is not implemented for this type")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user