thank you Lane
This commit is contained in:
parent
473abaf564
commit
4f051170e5
3 changed files with 36 additions and 38 deletions
|
|
@ -1,7 +1,14 @@
|
|||
pub const LastFMScrobble = struct {
|
||||
track: []u8,
|
||||
artist: []u8,
|
||||
album: ?[]u8,
|
||||
track: []const u8,
|
||||
artist: []const u8,
|
||||
album: ?[]const u8,
|
||||
date: i128,
|
||||
};
|
||||
|
||||
pub const SafeLastFMScrobble = struct {
|
||||
track: []const u8,
|
||||
artist: []const u8,
|
||||
album: []const u8,
|
||||
date: u64,
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue