Unify user data handling between greeter and locker

This commit is contained in:
Jeremy Soller 2025-05-09 11:27:14 -06:00
parent 04bc54a210
commit 04c3271f4a
6 changed files with 222 additions and 274 deletions

View file

@ -1,8 +1,8 @@
// Copyright 2023 System76 <info@system76.com>
// SPDX-License-Identifier: GPL-3.0-only
use cosmic_greeter::{greeter, locker};
use clap_lex::RawArgs;
use cosmic_greeter::{greeter, locker};
use std::error::Error;
fn main() -> Result<(), Box<dyn Error>> {
@ -52,4 +52,3 @@ Options:
-v, --version Show the version of cosmic-greeter"#
);
}