diff options
author | Neil Alexander <neilalexander@users.noreply.github.com> | 2021-06-25 14:20:36 +0100 |
---|---|---|
committer | Neil Alexander <neilalexander@users.noreply.github.com> | 2021-06-25 14:20:36 +0100 |
commit | 097a5833c883ddf3fac10fa2331ca644b98bc100 (patch) | |
tree | d4a22dc28c3312ae61b60af591b1da8a984496f1 /cmd/dendritejs-pinecone/main_noop.go | |
parent | 6ae976a55a190e621835f638a137307fcff101a4 (diff) |
dendritejs-pinecone
Diffstat (limited to 'cmd/dendritejs-pinecone/main_noop.go')
-rw-r--r-- | cmd/dendritejs-pinecone/main_noop.go | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/cmd/dendritejs-pinecone/main_noop.go b/cmd/dendritejs-pinecone/main_noop.go new file mode 100644 index 00000000..dcea032f --- /dev/null +++ b/cmd/dendritejs-pinecone/main_noop.go @@ -0,0 +1,23 @@ +// Copyright 2020 The Matrix.org Foundation C.I.C. +// +// Licensed 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. + +// +build !wasm + +package main + +import "fmt" + +func main() { + fmt.Println("dendritejs: no-op when not compiling for WebAssembly") +} |