Skip to content

Commit

Permalink
Added missing copyright headers
Browse files Browse the repository at this point in the history
Signed-off-by: Whit Waldo <[email protected]>
  • Loading branch information
WhitWaldo committed Oct 30, 2024
1 parent e9ee731 commit 2818394
Show file tree
Hide file tree
Showing 5 changed files with 70 additions and 5 deletions.
15 changes: 14 additions & 1 deletion examples/Workflow/WorkflowTaskChaining/Activities/Step1.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
using Dapr.Workflow;
// ------------------------------------------------------------------------
// Copyright 2024 The Dapr 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
// http://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.
// ------------------------------------------------------------------------

using Dapr.Workflow;

namespace WorkflowTaskChaining.Activities;

Expand Down
15 changes: 14 additions & 1 deletion examples/Workflow/WorkflowTaskChaining/Activities/Step2.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
using Dapr.Workflow;
// ------------------------------------------------------------------------
// Copyright 2024 The Dapr 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
// http://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.
// ------------------------------------------------------------------------

using Dapr.Workflow;

namespace WorkflowTaskChaining.Activities;

Expand Down
15 changes: 14 additions & 1 deletion examples/Workflow/WorkflowTaskChaining/Activities/Step3.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
using Dapr.Workflow;
// ------------------------------------------------------------------------
// Copyright 2024 The Dapr 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
// http://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.
// ------------------------------------------------------------------------

using Dapr.Workflow;

namespace WorkflowTaskChaining.Activities;

Expand Down
15 changes: 14 additions & 1 deletion examples/Workflow/WorkflowTaskChaining/Program.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
using Dapr.Workflow;
// ------------------------------------------------------------------------
// Copyright 2024 The Dapr 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
// http://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.
// ------------------------------------------------------------------------

using Dapr.Workflow;
using Microsoft.Extensions.DependencyInjection;
using Microsoft.Extensions.Hosting;
using WorkflowTaskChaining.Activities;
Expand Down
15 changes: 14 additions & 1 deletion examples/Workflow/WorkflowTaskChaining/Workflows/DemoWorkflow.cs
Original file line number Diff line number Diff line change
@@ -1,4 +1,17 @@
using Dapr.Workflow;
// ------------------------------------------------------------------------
// Copyright 2024 The Dapr 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
// http://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.
// ------------------------------------------------------------------------

using Dapr.Workflow;
using WorkflowTaskChaining.Activities;

namespace WorkflowTaskChaining.Workflows;
Expand Down

0 comments on commit 2818394

Please sign in to comment.