Skip to content

Commit 9c921d0

Browse files
committed
docs: add copyright headers
1 parent fe73e0d commit 9c921d0

28 files changed

Lines changed: 83 additions & 0 deletions

ci/smoke/run-local.ps1

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
3+
14
# Pre-publish smoke for Windows. See run-local.sh for details.
25
$ErrorActionPreference = 'Stop'
36

ci/smoke/run-local.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env bash
2+
# Copyright (c) Microsoft Corporation.
3+
# Licensed under the MIT License.
4+
25
# Pre-publish smoke: install the duroxide wheel for the current platform into
36
# a fresh venv OUTSIDE the repo, then run smoke.py.
47
#

ci/smoke/run-registry.ps1

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
3+
14
# Post-publish smoke for Windows. See run-registry.sh for details.
25
$ErrorActionPreference = 'Stop'
36

ci/smoke/run-registry.sh

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,7 @@
11
#!/usr/bin/env bash
2+
# Copyright (c) Microsoft Corporation.
3+
# Licensed under the MIT License.
4+
25
# Post-publish smoke: install `duroxide==<version>` from PyPI into a fresh
36
# venv and run smoke.py.
47
#

ci/smoke/smoke.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
3+
14
"""
25
Cross-platform packaging smoke test for the `duroxide` PyPI wheel.
36

python/duroxide/__init__.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
3+
14
"""
25
duroxide - Python SDK for the Duroxide durable execution runtime.
36

python/duroxide/context.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
3+
14
"""
25
OrchestrationContext and ActivityContext for duroxide Python SDK.
36

python/duroxide/driver.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# Copyright (c) Microsoft Corporation.
2+
# Licensed under the MIT License.
3+
14
"""
25
Generator driver for duroxide Python SDK.
36

src/client.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Microsoft Corporation.
2+
// Licensed under the MIT License.
3+
14
use pyo3::prelude::*;
25
use std::sync::Arc;
36
use std::time::Duration;

src/handlers.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
// Copyright (c) Microsoft Corporation.
2+
// Licensed under the MIT License.
3+
14
use parking_lot::Mutex;
25
use pyo3::prelude::*;
36
use std::collections::HashMap;

0 commit comments

Comments
 (0)