2
0
mirror of https://github.com/hibiken/asynq.git synced 2025-02-23 12:20:19 +08:00

Add license comment to all src files

This commit is contained in:
Ken Hibino 2020-01-02 18:13:16 -08:00
parent 9c0233c388
commit c62833540c
32 changed files with 129 additions and 1 deletions

View File

@ -1,8 +1,12 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package asynq package asynq
/* /*
TODOs: TODOs:
- [P0] Go docs + License comment - [P0] Go docs
*/ */
// Task represents a task to be performed. // Task represents a task to be performed.

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package asynq package asynq
import ( import (

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package asynq package asynq
import ( import (

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package asynq package asynq
import ( import (

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package asynq package asynq
import ( import (

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package asynq package asynq
import ( import (

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package asynq package asynq
import ( import (

4
doc.go
View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
/* /*
Package asynq provides a framework for background task processing. Package asynq provides a framework for background task processing.

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
// Package asynqtest defines test helpers for asynq and its internal packages. // Package asynqtest defines test helpers for asynq and its internal packages.
package asynqtest package asynqtest

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
// Package base defines foundational types and constants used in asynq package. // Package base defines foundational types and constants used in asynq package.
package base package base

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package base package base
import ( import (

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package rdb package rdb
import ( import (

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package rdb package rdb
import ( import (

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package rdb package rdb
import ( import (

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
// Package rdb encapsulates the interactions with redis. // Package rdb encapsulates the interactions with redis.
package rdb package rdb

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package rdb package rdb
import ( import (

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package asynq package asynq
import ( import (

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package asynq package asynq
import ( import (

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package asynq package asynq
import ( import (

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package asynq package asynq
import ( import (

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package asynq package asynq
import ( import (

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package asynq package asynq
import ( import (

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package cmd package cmd
import ( import (

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package cmd package cmd
import ( import (

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package cmd package cmd
import ( import (

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package cmd package cmd
import ( import (

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package cmd package cmd
import ( import (

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package cmd package cmd
import ( import (

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package cmd package cmd
import ( import (

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package cmd package cmd
import ( import (

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package cmd package cmd
import ( import (

View File

@ -1,3 +1,7 @@
// Copyright 2020 Kentaro Hibino. All rights reserved.
// Use of this source code is governed by a MIT license
// that can be found in the LICENSE file.
package main package main
import "github.com/hibiken/asynq/tools/asynqmon/cmd" import "github.com/hibiken/asynq/tools/asynqmon/cmd"