You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@plc4x.apache.org by cd...@apache.org on 2020/11/19 08:17:50 UTC

[plc4x] 02/02: - Added an empty go.mod file to the project root (Trying to get it working in go)

This is an automated email from the ASF dual-hosted git repository.

cdutz pushed a commit to branch feature/plc4go
in repository https://gitbox.apache.org/repos/asf/plc4x.git

commit c871dfc3f66df8f763b3b77818d9a4a082f98513
Author: Christofer Dutz <ch...@c-ware.de>
AuthorDate: Thu Nov 19 09:17:39 2020 +0100

    - Added an empty go.mod file to the project root (Trying to get it working in go)
---
 go.mod | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..34c9bc3
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,21 @@
+//
+// 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.
+//
+module github.com/apache/plc4x
+
+go 1.15