mirror of
https://github.com/martinvonz/jj.git
synced 2025-01-16 09:11:55 +00:00
6d8d495075
Box<dyn> isn't technically needed, but it simplifies the type signature. Type alias is added to silence clippy warning.
19 lines
681 B
Rust
19 lines
681 B
Rust
// Copyright 2020 The Jujutsu Authors
|
|
//
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
// you may not use this file except in compliance with the License.
|
|
// You may obtain a copy of the License at
|
|
//
|
|
// https://www.apache.org/licenses/LICENSE-2.0
|
|
//
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
use jujutsu::cli_util::CliRunner;
|
|
|
|
fn main() {
|
|
CliRunner::init().run_and_exit();
|
|
}
|