forked from AbleOS/ableos
10 lines
161 B
Rust
10 lines
161 B
Rust
|
/*
|
||
|
* Copyright (c) 2022, Umut İnan Erdoğan <umutinanerdogan@pm.me>
|
||
|
*
|
||
|
* SPDX-License-Identifier: MPL-2.0
|
||
|
*/
|
||
|
|
||
|
pub enum FsError {
|
||
|
UnsupportedOperation,
|
||
|
}
|