diff options
Diffstat (limited to 'src/group.rs')
-rw-r--r-- | src/group.rs | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/group.rs b/src/group.rs index e17addb..2ed8e92 100644 --- a/src/group.rs +++ b/src/group.rs @@ -14,16 +14,13 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see <https://www.gnu.org/licenses/>. -use crate::{ - client::Client, - error::Error, -}; +use crate::{client::Client, error::Error}; use serde::Serialize; pub struct Group; pub fn group() -> Group { - Group { } + Group {} } impl Group { |