Skip to content

Commit

Permalink
Update licensing information
Browse files Browse the repository at this point in the history
  • Loading branch information
mvdkleijn committed Jun 5, 2023
1 parent 81c3159 commit fff55e0
Show file tree
Hide file tree
Showing 6 changed files with 415 additions and 675 deletions.
1,047 changes: 373 additions & 674 deletions LICENSE

Large diffs are not rendered by default.

3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,5 @@ func main() {

# Licensing

Go-simplequeue is licensed under GPLv3. The full details are available from the [LICENSE](/LICENSE) file.
Go-simplequeue is made available under the [MPL-2.0](https://choosealicense.com/licenses/mpl-2.0/)
license. The full details are available from the [LICENSE](/LICENSE) file.
10 changes: 10 additions & 0 deletions jobs.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/*
Copyright (C) 2023 Martijn van der Kleijn
This file is part of the go-simplequeue library.
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/

package simplequeue

// Job should be implemented by any struct intended for queueing
Expand Down
10 changes: 10 additions & 0 deletions queues.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/*
Copyright (C) 2023 Martijn van der Kleijn
This file is part of the go-simplequeue library.
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/

package simplequeue

import (
Expand Down
10 changes: 10 additions & 0 deletions workers.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/*
Copyright (C) 2023 Martijn van der Kleijn
This file is part of the go-simplequeue library.
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/

package simplequeue

import (
Expand Down
10 changes: 10 additions & 0 deletions workers_test.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,13 @@
/*
Copyright (C) 2023 Martijn van der Kleijn
This file is part of the go-simplequeue library.
This Source Code Form is subject to the terms of the Mozilla Public
License, v. 2.0. If a copy of the MPL was not distributed with this
file, You can obtain one at http://mozilla.org/MPL/2.0/.
*/

package simplequeue

import (
Expand Down

0 comments on commit fff55e0

Please sign in to comment.