Skip to content

Commit

Permalink
Moved Scheduler inside Revel Application
Browse files Browse the repository at this point in the history
  • Loading branch information
jhleath committed May 6, 2014
1 parent 23f35c1 commit 72aae20
Show file tree
Hide file tree
Showing 8 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/controllers/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ package controllers
import (
"encoding/json"
"github.com/huntaub/list/app/models"
"github.com/huntaub/list/schedule"
"github.com/huntaub/list/app/schedule"
"github.com/robfig/revel"
)

Expand Down
2 changes: 1 addition & 1 deletion app/controllers/app.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"fmt"
"github.com/huntaub/list/app/models"
"github.com/huntaub/list/app/routes"
"github.com/huntaub/list/schedule"
"github.com/huntaub/list/app/schedule"
"github.com/robfig/revel"
"sort"
"strconv"
Expand Down
2 changes: 1 addition & 1 deletion app/controllers/db.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package controllers

import (
"fmt"
"github.com/huntaub/list/schedule"
"github.com/huntaub/list/app/schedule"
"github.com/robfig/revel"
"labix.org/v2/mgo"
)
Expand Down
2 changes: 1 addition & 1 deletion app/controllers/init.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package controllers

import (
"github.com/huntaub/list/schedule"
"github.com/huntaub/list/app/schedule"
"github.com/robfig/revel"
"labix.org/v2/mgo"
"math/rand"
Expand Down
2 changes: 1 addition & 1 deletion app/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package app

import (
"github.com/huntaub/list/app/controllers"
"github.com/huntaub/list/schedule"
"github.com/huntaub/list/app/schedule"
"github.com/robfig/revel"
"strings"
"time"
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 72aae20

Please sign in to comment.