package util

import (
	"fmt"
	"time"
)

func MakePath(file string) string {
	now := toString(time.Now().Unix())
	path := "/pics/" + now + file
	return path
}

func toString(now int64) string {
	return fmt.Sprint(now)
}