mirror of
https://github.com/JakeHillion/scx.git
synced 2024-11-30 13:00:24 +00:00
06d8170f9f
Introduce a Builder() class in scx_utils that can be used by other scx crates (such as scx_rustland_core) to prevent code duplication. Signed-off-by: Andrea Righi <andrea.righi@canonical.com>
11 lines
240 B
Rust
11 lines
240 B
Rust
// Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
//
|
|
// This software may be used and distributed according to the terms of the
|
|
// GNU General Public License version 2.
|
|
|
|
use scx_utils::Builder;
|
|
|
|
fn main() {
|
|
Builder::new().build()
|
|
}
|