thank you Lane

This commit is contained in:
Samuel Webb 2025-02-18 13:10:47 -05:00
parent 473abaf564
commit 4f051170e5
3 changed files with 36 additions and 38 deletions

View file

@ -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,
};