You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.
package pic
import (
"fmt"
"github.com/jmoiron/sqlx"
)
//Picture работа с картинкаи
type Picture struct {
ID int ` json:"id" `
Url string ` json:"src" `
Width int ` json:"width" `
Height int ` json:"height" `
Thumb string ` json:"srct" `
ThumbWidth int ` db:"thumb_width" json:"imgtWidth" `
ThumbHeight int ` db:"thumb_height" json:"imgtHeight" `
// закрытые поля
db * sqlx . DB
album string
}
//Hello - приветствие и комментарии к модулю
func Hello ( ) {
fmt . Printf ( "pic - пакет для работы с картинками\n" )
fmt . Printf ( "v0.0.1 - начальная версия\n" )
}
func NewPicture ( db * sqlx . DB , album string ) Picture {
pic := Picture { db : db , album : album }
return pic
}