mirror of
https://github.com/yanislav-igonin/micrach
synced 2024-12-22 14:22:33 +03:00
feat: remove local seeds
This commit is contained in:
parent
ac006d5f1b
commit
4c48bdb5b5
@ -12,10 +12,6 @@ type PostsRepository struct{}
|
||||
var Posts PostsRepository
|
||||
|
||||
func (r *PostsRepository) Get(limit, offset int) ([]Post, error) {
|
||||
if Db.Pool == nil {
|
||||
return PostsDb, nil
|
||||
}
|
||||
|
||||
conn, err := Db.Pool.Acquire(context.TODO())
|
||||
if err != nil {
|
||||
return nil, err
|
||||
|
@ -3,7 +3,6 @@ package repositories
|
||||
import (
|
||||
"log"
|
||||
"math/rand"
|
||||
Db "micrach/db"
|
||||
"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() {
|
||||
// preparing seed data with parent posts with files
|
||||
var parentPosts []Post
|
||||
@ -119,10 +108,6 @@ func seedDb() {
|
||||
}
|
||||
|
||||
func Seed() {
|
||||
if Db.Pool != nil {
|
||||
seedDb()
|
||||
} else {
|
||||
seedLocal()
|
||||
}
|
||||
log.Println("mocks - online")
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user