flowey_cli/cli/debug/
list_patches.rs

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.

/// (debug) list all registered patches
#[derive(clap::Args)]
pub struct ListPatches;

impl ListPatches {
    pub fn run(self) -> anyhow::Result<()> {
        let mut v = flowey_core::patch::patchfn_by_modpath()
            .keys()
            .collect::<Vec<_>>();
        v.sort();
        for fn_name in v {
            println!("{fn_name}")
        }

        Ok(())
    }
}