Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
M
mybee
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
vicotor
mybee
Commits
f9c58e64
Commit
f9c58e64
authored
Jan 23, 2020
by
Janos Guljas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
add BSD license and licensing headers
parent
02971a26
Changes
28
Hide whitespace changes
Inline
Side-by-side
Showing
28 changed files
with
135 additions
and
0 deletions
+135
-0
LICENSE
LICENSE
+27
-0
cmd.go
cmd/bee/cmd/cmd.go
+4
-0
cmd_test.go
cmd/bee/cmd/cmd_test.go
+4
-0
export_test.go
cmd/bee/cmd/export_test.go
+4
-0
start.go
cmd/bee/cmd/start.go
+4
-0
version.go
cmd/bee/cmd/version.go
+4
-0
version_test.go
cmd/bee/cmd/version_test.go
+4
-0
main.go
cmd/bee/main.go
+4
-0
doc.go
doc.go
+4
-0
api.go
pkg/api/api.go
+4
-0
metrics.go
pkg/api/metrics.go
+4
-0
pingpong.go
pkg/api/pingpong.go
+4
-0
router.go
pkg/api/router.go
+4
-0
debugapi.go
pkg/debugapi/debugapi.go
+4
-0
metrics.go
pkg/debugapi/metrics.go
+4
-0
router.go
pkg/debugapi/router.go
+4
-0
status.go
pkg/debugapi/status.go
+4
-0
metrics.go
pkg/metrics/metrics.go
+4
-0
libp2p.go
pkg/p2p/libp2p/libp2p.go
+4
-0
metrics.go
pkg/p2p/libp2p/metrics.go
+4
-0
mock.go
pkg/p2p/mock/mock.go
+4
-0
p2p.go
pkg/p2p/p2p.go
+4
-0
protobuf.go
pkg/p2p/protobuf/protobuf.go
+4
-0
metrics.go
pkg/pingpong/metrics.go
+4
-0
pingpong.go
pkg/pingpong/pingpong.go
+4
-0
pingpong.proto
pkg/pingpong/pingpong.proto
+4
-0
pingpong_test.go
pkg/pingpong/pingpong_test.go
+4
-0
version.go
version.go
+4
-0
No files found.
LICENSE
0 → 100644
View file @
f9c58e64
Copyright (c) 2020 The Swarm Authors. All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are
met:
* Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
* Redistributions in binary form must reproduce the above
copyright notice, this list of conditions and the following disclaimer
in the documentation and/or other materials provided with the
distribution.
* Neither the name of Google Inc. nor the names of its
contributors may be used to endorse or promote products derived from
this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
"AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
\ No newline at end of file
cmd/bee/cmd/cmd.go
View file @
f9c58e64
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
cmd
package
cmd
import
(
import
(
...
...
cmd/bee/cmd/cmd_test.go
View file @
f9c58e64
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
cmd_test
package
cmd_test
import
(
import
(
...
...
cmd/bee/cmd/export_test.go
View file @
f9c58e64
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
cmd
package
cmd
import
"io"
import
"io"
...
...
cmd/bee/cmd/start.go
View file @
f9c58e64
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
cmd
package
cmd
import
(
import
(
...
...
cmd/bee/cmd/version.go
View file @
f9c58e64
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
cmd
package
cmd
import
(
import
(
...
...
cmd/bee/cmd/version_test.go
View file @
f9c58e64
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
cmd_test
package
cmd_test
import
(
import
(
...
...
cmd/bee/main.go
View file @
f9c58e64
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
main
package
main
import
(
import
(
...
...
doc.go
View file @
f9c58e64
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
// Package bee is the root package of Ethereum Swarm node implementation.
// Package bee is the root package of Ethereum Swarm node implementation.
package
bee
package
bee
pkg/api/api.go
View file @
f9c58e64
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
api
package
api
import
(
import
(
...
...
pkg/api/metrics.go
View file @
f9c58e64
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
api
package
api
import
(
import
(
...
...
pkg/api/pingpong.go
View file @
f9c58e64
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
api
package
api
import
(
import
(
...
...
pkg/api/router.go
View file @
f9c58e64
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
api
package
api
import
(
import
(
...
...
pkg/debugapi/debugapi.go
View file @
f9c58e64
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
debugapi
package
debugapi
import
(
import
(
...
...
pkg/debugapi/metrics.go
View file @
f9c58e64
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
debugapi
package
debugapi
import
(
import
(
...
...
pkg/debugapi/router.go
View file @
f9c58e64
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
debugapi
package
debugapi
import
(
import
(
...
...
pkg/debugapi/status.go
View file @
f9c58e64
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
debugapi
package
debugapi
import
(
import
(
...
...
pkg/metrics/metrics.go
View file @
f9c58e64
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
metrics
package
metrics
import
(
import
(
...
...
pkg/p2p/libp2p/libp2p.go
View file @
f9c58e64
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
libp2p
package
libp2p
import
(
import
(
...
...
pkg/p2p/libp2p/metrics.go
View file @
f9c58e64
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
libp2p
package
libp2p
import
(
import
(
...
...
pkg/p2p/mock/mock.go
View file @
f9c58e64
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
mock
package
mock
import
(
import
(
...
...
pkg/p2p/p2p.go
View file @
f9c58e64
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
p2p
package
p2p
import
(
import
(
...
...
pkg/p2p/protobuf/protobuf.go
View file @
f9c58e64
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
protobuf
package
protobuf
import
(
import
(
...
...
pkg/pingpong/metrics.go
View file @
f9c58e64
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
pingpong
package
pingpong
import
(
import
(
...
...
pkg/pingpong/pingpong.go
View file @
f9c58e64
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
//go:generate sh -c "protoc -I . -I \"$(go list -f '{{ .Dir }}' -m github.com/gogo/protobuf)/protobuf\" --gogofaster_out=. pingpong.proto"
//go:generate sh -c "protoc -I . -I \"$(go list -f '{{ .Dir }}' -m github.com/gogo/protobuf)/protobuf\" --gogofaster_out=. pingpong.proto"
package
pingpong
package
pingpong
...
...
pkg/pingpong/pingpong.proto
View file @
f9c58e64
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
syntax
=
"proto3"
;
syntax
=
"proto3"
;
package
pingpong
;
package
pingpong
;
...
...
pkg/pingpong/pingpong_test.go
View file @
f9c58e64
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
pingpong_test
package
pingpong_test
import
(
import
(
...
...
version.go
View file @
f9c58e64
// Copyright 2020 The Swarm Authors. All rights reserved.
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
package
bee
package
bee
var
(
var
(
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment