mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
0249afc523
This package was moved to a separate repository, using the steps below:
# install filter-repo (https://github.com/newren/git-filter-repo/blob/main/INSTALL.md)
brew install git-filter-repo
cd ~/projects
# create a temporary clone of docker
git clone https://github.com/docker/docker.git moby_pubsub_temp
cd moby_pubsub_temp
# for reference
git rev-parse HEAD
# --> 572ca799db
# remove all code, except for pkg/pubsub, license, and notice, and rename pkg/pubsub to /
git filter-repo --path pkg/pubsub/ --path LICENSE --path NOTICE --path-rename pkg/pubsub/:
# remove canonical imports
git revert -s -S 585ff0ebbe6bc25b801a0e0087dd5353099cb72e
# initialize module
go mod init github.com/moby/pubsub
go mod tidy
Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
19 lines
642 B
Text
19 lines
642 B
Text
Docker
|
|
Copyright 2012-2017 Docker, Inc.
|
|
|
|
This product includes software developed at Docker, Inc. (https://www.docker.com).
|
|
|
|
This product contains software (https://github.com/creack/pty) developed
|
|
by Keith Rarick, licensed under the MIT License.
|
|
|
|
The following is courtesy of our legal counsel:
|
|
|
|
|
|
Use and transfer of Docker may be subject to certain restrictions by the
|
|
United States and other governments.
|
|
It is your responsibility to ensure that your use and/or transfer does not
|
|
violate applicable laws.
|
|
|
|
For more information, please see https://www.bis.doc.gov
|
|
|
|
See also https://www.apache.org/dev/crypto.html and/or seek legal counsel.
|