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

ianmcook pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-experiments.git


The following commit(s) were added to refs/heads/main by this push:
     new 22c5dcf  Add missing manifests and add .`gitignore` files (#11)
22c5dcf is described below

commit 22c5dcf4448074aca4e98e1e2d6837e579a5b2a3
Author: Ian Cook <[email protected]>
AuthorDate: Fri Mar 8 12:41:59 2024 -0500

    Add missing manifests and add .`gitignore` files (#11)
    
    * Add go.mod files
    
    * Add package.json for JS client
    
    * Add .gitignore files
---
 http/get_simple/cpp/.gitignore         | 22 ++++++++++++++++++++++
 http/get_simple/go/.gitignore          | 23 +++++++++++++++++++++++
 http/get_simple/go/client/go.mod       | 19 +++++++++++++++++++
 http/get_simple/go/server/go.mod       | 19 +++++++++++++++++++
 http/get_simple/java/.gitignore        | 19 +++++++++++++++++++
 http/get_simple/js/.gitignore          | 20 ++++++++++++++++++++
 http/get_simple/js/client/package.json |  5 +++++
 7 files changed, 127 insertions(+)

diff --git a/http/get_simple/cpp/.gitignore b/http/get_simple/cpp/.gitignore
new file mode 100644
index 0000000..5096b1d
--- /dev/null
+++ b/http/get_simple/cpp/.gitignore
@@ -0,0 +1,22 @@
+# 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.
+
+*
+!*.*
+!*/
+.DS_Store
+
diff --git a/http/get_simple/go/.gitignore b/http/get_simple/go/.gitignore
new file mode 100644
index 0000000..e44189a
--- /dev/null
+++ b/http/get_simple/go/.gitignore
@@ -0,0 +1,23 @@
+# 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.
+
+*
+!*.*
+!*/
+.DS_Store
+go.sum
+
diff --git a/http/get_simple/go/client/go.mod b/http/get_simple/go/client/go.mod
new file mode 100644
index 0000000..7306565
--- /dev/null
+++ b/http/get_simple/go/client/go.mod
@@ -0,0 +1,19 @@
+module client
+
+go 1.21.5
+
+require github.com/apache/arrow/go/v15 v15.0.0
+
+require (
+       github.com/goccy/go-json v0.10.2 // indirect
+       github.com/google/flatbuffers v23.5.26+incompatible // indirect
+       github.com/klauspost/compress v1.16.7 // indirect
+       github.com/klauspost/cpuid/v2 v2.2.5 // indirect
+       github.com/pierrec/lz4/v4 v4.1.18 // indirect
+       github.com/zeebo/xxh3 v1.0.2 // indirect
+       golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
+       golang.org/x/mod v0.13.0 // indirect
+       golang.org/x/sys v0.13.0 // indirect
+       golang.org/x/tools v0.14.0 // indirect
+       golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
+)
diff --git a/http/get_simple/go/server/go.mod b/http/get_simple/go/server/go.mod
new file mode 100644
index 0000000..b2bc4db
--- /dev/null
+++ b/http/get_simple/go/server/go.mod
@@ -0,0 +1,19 @@
+module server
+
+go 1.21.5
+
+require github.com/apache/arrow/go/v15 v15.0.0
+
+require (
+       github.com/goccy/go-json v0.10.2 // indirect
+       github.com/google/flatbuffers v23.5.26+incompatible // indirect
+       github.com/klauspost/compress v1.16.7 // indirect
+       github.com/klauspost/cpuid/v2 v2.2.5 // indirect
+       github.com/pierrec/lz4/v4 v4.1.18 // indirect
+       github.com/zeebo/xxh3 v1.0.2 // indirect
+       golang.org/x/exp v0.0.0-20231006140011-7918f672742d // indirect
+       golang.org/x/mod v0.13.0 // indirect
+       golang.org/x/sys v0.13.0 // indirect
+       golang.org/x/tools v0.14.0 // indirect
+       golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect
+)
diff --git a/http/get_simple/java/.gitignore b/http/get_simple/java/.gitignore
new file mode 100644
index 0000000..c2dcbe0
--- /dev/null
+++ b/http/get_simple/java/.gitignore
@@ -0,0 +1,19 @@
+# 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.
+
+/**/target
+
diff --git a/http/get_simple/js/.gitignore b/http/get_simple/js/.gitignore
new file mode 100644
index 0000000..1cb5915
--- /dev/null
+++ b/http/get_simple/js/.gitignore
@@ -0,0 +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.
+
+/**/node_modules
+package-lock.json
+
diff --git a/http/get_simple/js/client/package.json 
b/http/get_simple/js/client/package.json
new file mode 100644
index 0000000..040c93d
--- /dev/null
+++ b/http/get_simple/js/client/package.json
@@ -0,0 +1,5 @@
+{
+  "dependencies": {
+    "apache-arrow": "^15.0.1"
+  }
+}

Reply via email to