feat: remove local seeds

This commit is contained in:
Yanislav Igonin 2021-09-08 15:39:09 +03:00
parent ac006d5f1b
commit 4c48bdb5b5
2 changed files with 1 additions and 20 deletions

View File

@ -12,10 +12,6 @@ type PostsRepository struct{}
var Posts PostsRepository var Posts PostsRepository
func (r *PostsRepository) Get(limit, offset int) ([]Post, error) { func (r *PostsRepository) Get(limit, offset int) ([]Post, error) {
if Db.Pool == nil {
return PostsDb, nil
}
conn, err := Db.Pool.Acquire(context.TODO()) conn, err := Db.Pool.Acquire(context.TODO())
if err != nil { if err != nil {
return nil, err return nil, err

View File

@ -3,7 +3,6 @@ package repositories
import ( import (
"log" "log"
"math/rand" "math/rand"
Db "micrach/db"
"time" "time"
) )
@ -62,16 +61,6 @@ func getPost(id int, pid *int) Post {
} }
} }
var PostsDb = []Post{}
func seedLocal() {
rand.Seed(time.Now().UnixNano())
for i := 1; i < 10; i++ {
PostsDb = append(PostsDb, getPost(i, nil))
}
}
func seedDb() { func seedDb() {
// preparing seed data with parent posts with files // preparing seed data with parent posts with files
var parentPosts []Post var parentPosts []Post
@ -119,10 +108,6 @@ func seedDb() {
} }
func Seed() { func Seed() {
if Db.Pool != nil {
seedDb() seedDb()
} else {
seedLocal()
}
log.Println("mocks - online") log.Println("mocks - online")
} }