Skip to content

Commit

Permalink
Add license headers
Browse files Browse the repository at this point in the history
  • Loading branch information
jackkleeman committed May 16, 2024
1 parent 6bc32d4 commit 0ecf9b3
Show file tree
Hide file tree
Showing 12 changed files with 84 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cli/src/clients/cloud/client.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2023 - Restate Software, Inc., Restate GmbH.
// Copyright (c) 2024 - Restate Software, Inc., Restate GmbH.
// All rights reserved.
//
// Use of this software is governed by the Business Source License
Expand Down
2 changes: 1 addition & 1 deletion cli/src/clients/cloud/interface.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2023 - Restate Software, Inc., Restate GmbH.
// Copyright (c) 2024 - Restate Software, Inc., Restate GmbH.
// All rights reserved.
//
// Use of this software is governed by the Business Source License
Expand Down
10 changes: 10 additions & 0 deletions cli/src/clients/cloud/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (c) 2024 - Restate Software, Inc., Restate GmbH.
// All rights reserved.
//
// Use of this software is governed by the Business Source License
// included in the LICENSE file.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0.

mod client;
mod interface;

Expand Down
10 changes: 10 additions & 0 deletions cli/src/commands/cloud/environments/configure.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (c) 2024 - Restate Software, Inc., Restate GmbH.
// All rights reserved.
//
// Use of this software is governed by the Business Source License
// included in the LICENSE file.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0.

use crate::{
c_success,
cli_env::CliEnv,
Expand Down
10 changes: 10 additions & 0 deletions cli/src/commands/cloud/environments/mod.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (c) 2024 - Restate Software, Inc., Restate GmbH.
// All rights reserved.
//
// Use of this software is governed by the Business Source License
// included in the LICENSE file.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0.

mod configure;

use cling::prelude::*;
Expand Down
10 changes: 10 additions & 0 deletions cli/src/commands/cloud/login.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (c) 2024 - Restate Software, Inc., Restate GmbH.
// All rights reserved.
//
// Use of this software is governed by the Business Source License
// included in the LICENSE file.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0.

use std::net::SocketAddr;

use crate::{build_info, c_println, c_success, cli_env::CliEnv};
Expand Down
2 changes: 1 addition & 1 deletion cli/src/commands/cloud/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2023 - Restate Software, Inc., Restate GmbH.
// Copyright (c) 2024 - Restate Software, Inc., Restate GmbH.
// All rights reserved.
//
// Use of this software is governed by the Business Source License
Expand Down
10 changes: 10 additions & 0 deletions cli/src/commands/config/edit.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (c) 2024 - Restate Software, Inc., Restate GmbH.
// All rights reserved.
//
// Use of this software is governed by the Business Source License
// included in the LICENSE file.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0.

use crate::{cli_env::CliEnv, console};
use anyhow::Result;
use cling::prelude::*;
Expand Down
10 changes: 10 additions & 0 deletions cli/src/commands/config/list_environments.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (c) 2024 - Restate Software, Inc., Restate GmbH.
// All rights reserved.
//
// Use of this software is governed by the Business Source License
// included in the LICENSE file.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0.

use crate::{
c_println,
cli_env::{CliConfig, CliEnv, LOCAL_PROFILE},
Expand Down
2 changes: 1 addition & 1 deletion cli/src/commands/config/mod.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// Copyright (c) 2023 - Restate Software, Inc., Restate GmbH.
// Copyright (c) 2024 - Restate Software, Inc., Restate GmbH.
// All rights reserved.
//
// Use of this software is governed by the Business Source License
Expand Down
10 changes: 10 additions & 0 deletions cli/src/commands/config/use_environment.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (c) 2024 - Restate Software, Inc., Restate GmbH.
// All rights reserved.
//
// Use of this software is governed by the Business Source License
// included in the LICENSE file.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0.

use crate::{c_success, cli_env::CliEnv};
use anyhow::Result;
use cling::prelude::*;
Expand Down
10 changes: 10 additions & 0 deletions cli/src/commands/config/view.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
// Copyright (c) 2024 - Restate Software, Inc., Restate GmbH.
// All rights reserved.
//
// Use of this software is governed by the Business Source License
// included in the LICENSE file.
//
// As of the Change Date specified in that file, in accordance with
// the Business Source License, use of this software will be governed
// by the Apache License, Version 2.0.

use crate::{c_println, cli_env::CliEnv, console};
use anyhow::Result;
use cling::prelude::*;
Expand Down

0 comments on commit 0ecf9b3

Please sign in to comment.