index — walletdrain @ 37a7078120e9319c3443b1dfadf53f59c571be81

Little app to track my spendings, for the time being only for music

structs.go (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
package main

import "database/sql"

type musicItem struct {
    id int
    external_ids sql.NullString
    name sql.NullString
    artist sql.NullString
    price float64
    currency sql.NullString
    seller sql.NullString
    note sql.NullString
    purchase_date sql.NullString
}