index — walletdrain @ 5d39f632a1e5e772b264f03d1ca75202185340c3

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

type musicItem struct {
    id int
    external_ids string
    name string
    price float64
    currency string
    seller string
    note string
    purchase_date string
}