index — walletdrain @ c4034a8e6b409b47ec5ee6f64bcb12c8dfa16304

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
package main

import "database/sql"

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