sapling/cmds/admin/cmdargs.rs
Kostia Balytskyi a4599001be mononoke: refactor the admin tool into components
Summary: Let's make it a bit more manageable.

Reviewed By: StanislavGlebik

Differential Revision: D15407978

fbshipit-source-id: 490e4d48c36349cf65171f38df0ef0372883281d
2019-05-21 12:25:59 -07:00

26 lines
1.2 KiB
Rust

// Copyright (c) 2004-present, Facebook, Inc.
// All Rights Reserved.
//
// This software may be used and distributed according to the terms of the
// GNU General Public License version 2 or any later version.
pub const BLOBSTORE_FETCH: &'static str = "blobstore-fetch";
pub const BONSAI_FETCH: &'static str = "bonsai-fetch";
pub const CONTENT_FETCH: &'static str = "content-fetch";
pub const BOOKMARKS: &'static str = "bookmarks";
pub const SKIPLIST: &'static str = "skiplist";
pub const HASH_CONVERT: &'static str = "convert";
pub const HG_CHANGESET: &'static str = "hg-changeset";
pub const HG_CHANGESET_DIFF: &'static str = "diff";
pub const HG_CHANGESET_RANGE: &'static str = "range";
pub const HG_SYNC_BUNDLE: &'static str = "hg-sync-bundle";
pub const HG_SYNC_REMAINS: &'static str = "remains";
pub const HG_SYNC_SHOW: &'static str = "show";
pub const HG_SYNC_FETCH_BUNDLE: &'static str = "fetch-bundle";
pub const HG_SYNC_LAST_PROCESSED: &'static str = "last-processed";
pub const HG_SYNC_VERIFY: &'static str = "verify";
pub const SKIPLIST_BUILD: &'static str = "build";
pub const SKIPLIST_READ: &'static str = "read";
pub const ADD_PUBLIC_PHASES: &'static str = "add-public-phases";
pub const BLACKLIST: &'static str = "blacklist";