move_analyzer/move-analyzer.rs
1// Copyright (c) Mysten Labs, Inc.
2// Modifications Copyright (c) 2024 IOTA Stiftung
3// SPDX-License-Identifier: Apache-2.0
4
5use clap::*;
6use move_analyzer::analyzer;
7
8// Define the `GIT_REVISION` and `VERSION` consts
9bin_version::bin_version!();
10
11#[derive(Parser)]
12#[command(
13 name = env!("CARGO_BIN_NAME"),
14 author,
15 version = VERSION,
16)]
17struct App {}
18
19fn main() {
20 App::parse();
21 analyzer::run();
22}