Skip to content

Commit

Permalink
Add license headers
Browse files Browse the repository at this point in the history
  • Loading branch information
igalshilman committed Sep 29, 2023
1 parent 489d342 commit ecf7675
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 0 deletions.
11 changes: 11 additions & 0 deletions src/connection/embedded_connection.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
/*
* Copyright (c) 2023 - Restate Software, Inc., Restate GmbH
*
* This file is part of the Restate SDK for Node.js/TypeScript,
* which is released under the MIT license.
*
* You can find a copy of the license in file LICENSE in the root
* directory of this repository or package, or at
* https://github.com/restatedev/sdk-typescript/blob/main/LICENSE
*/

import { RemoteContext } from "../generated/proto/services";
import { encodeMessages } from "../io/encoder";
import { Message } from "../types/types";
Expand Down
11 changes: 11 additions & 0 deletions src/embedded/api.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
/*
* Copyright (c) 2023 - Restate Software, Inc., Restate GmbH
*
* This file is part of the Restate SDK for Node.js/TypeScript,
* which is released under the MIT license.
*
* You can find a copy of the license in file LICENSE in the root
* directory of this repository or package, or at
* https://github.com/restatedev/sdk-typescript/blob/main/LICENSE
*/

import { RpcContext } from "../restate_context";
import { doInvoke } from "./invocation";
import { wrapHandler } from "./handler";
Expand Down
11 changes: 11 additions & 0 deletions src/embedded/handler.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
/*
* Copyright (c) 2023 - Restate Software, Inc., Restate GmbH
*
* This file is part of the Restate SDK for Node.js/TypeScript,
* which is released under the MIT license.
*
* You can find a copy of the license in file LICENSE in the root
* directory of this repository or package, or at
* https://github.com/restatedev/sdk-typescript/blob/main/LICENSE
*/

import { RpcContext, useContext } from "../restate_context";
import { RpcContextImpl } from "../restate_context_impl";
import { GrpcServiceMethod, HostedGrpcServiceMethod } from "../types/grpc";
Expand Down
11 changes: 11 additions & 0 deletions src/embedded/http2_remote.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
/*
* Copyright (c) 2023 - Restate Software, Inc., Restate GmbH
*
* This file is part of the Restate SDK for Node.js/TypeScript,
* which is released under the MIT license.
*
* You can find a copy of the license in file LICENSE in the root
* directory of this repository or package, or at
* https://github.com/restatedev/sdk-typescript/blob/main/LICENSE
*/

import http2 from "node:http2";
import { once } from "events";
import {
Expand Down

0 comments on commit ecf7675

Please sign in to comment.