Browse Source

Enforce custom import pat

Force a custom import paths introduced in go 1.4. See: [custom paths](https://docs.google.com/a/daddye.it/document/d/1jVFkZTcYbNLaTxXD9OcGfn7vYv5hWtPx9--lTx1gPMs)

This will avoid conflicts with master.
Davide D'Agostino 11 years ago
parent
commit
93efa02b9f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cron.go

+ 1 - 1
cron.go

@@ -1,5 +1,5 @@
 // Package cron implements a cron spec parser and runner.
-package cron
+package cron //import "gopkg.in/robfig/cron.v2"
 
 import (
 	"sort"