From cef16f5fc71de53f3fbaab95c7356bf4c50b8253 Mon Sep 17 00:00:00 2001 From: reugn <reugpro@gmail.com> Date: Mon, 22 Apr 2019 22:41:56 +0300 Subject: [PATCH] fix import --- examples/main.go | 2 +- examples/print_job.go | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/examples/main.go b/examples/main.go index 887c1a5..94202b9 100644 --- a/examples/main.go +++ b/examples/main.go @@ -6,7 +6,7 @@ import ( "sync" "time" - "go-quartz/quartz" + "github.com/reugn/go-quartz/quartz" ) //demo main diff --git a/examples/print_job.go b/examples/print_job.go index c928fdb..60eefdc 100644 --- a/examples/print_job.go +++ b/examples/print_job.go @@ -2,7 +2,8 @@ package main import ( "fmt" - "go-quartz/quartz" + + "github.com/reugn/go-quartz/quartz" ) //implements quartz.Job interface