This is an automated email from the ASF dual-hosted git repository. garyw pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/mnemonic.git
commit 3d31fd7f823134cd7680685e7273a6dd4653947b Author: Katarina <[email protected]> AuthorDate: Sun Nov 26 04:00:10 2023 +0000 fixup! MNEMONIC-801: Add a subproject for Mnemonic protocol service --- mnemonic-protocol/service/Cargo.toml | 17 +++++++++++++++++ mnemonic-protocol/service/src/main.rs | 17 +++++++++++++++++ 2 files changed, 34 insertions(+) diff --git a/mnemonic-protocol/service/Cargo.toml b/mnemonic-protocol/service/Cargo.toml index b3b38d7..e58b788 100644 --- a/mnemonic-protocol/service/Cargo.toml +++ b/mnemonic-protocol/service/Cargo.toml @@ -1,3 +1,20 @@ +# Licensed to the Apache Software Foundation (ASF) under one +# or more contributor license agreements. See the NOTICE file +# distributed with this work for additional information +# regarding copyright ownership. The ASF licenses this file +# to you 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. + [package] name = "service" version = "0.1.0" diff --git a/mnemonic-protocol/service/src/main.rs b/mnemonic-protocol/service/src/main.rs index e7a11a9..49b5eef 100644 --- a/mnemonic-protocol/service/src/main.rs +++ b/mnemonic-protocol/service/src/main.rs @@ -1,3 +1,20 @@ +// Licensed to the Apache Software Foundation (ASF) under one +// or more contributor license agreements. See the NOTICE file +// distributed with this work for additional information +// regarding copyright ownership. The ASF licenses this file +// to you 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. + fn main() { println!("Hello, world!"); }
