package structs
import "time"
type Picture struct {
UserId string
PictureId string
Likes int
Location string
Description string
CreatedAt time.Time
}
type APIPicture struct {