diff options
author | George Abbott <george@gabbott.dev> | 2023-10-04 20:20:57 +0100 |
---|---|---|
committer | George Abbott <george@gabbott.dev> | 2023-10-04 20:20:57 +0100 |
commit | 08cec360e16615b1ae157e4926e7317d16765f7e (patch) | |
tree | 3a03e0a1acf89973de92e7f6f7a08b2a587b7485 /source/rssmeta.d | |
parent | 8e4092347975db7fe90b0895f605bdd79de47410 (diff) |
Progress thus far
Diffstat (limited to 'source/rssmeta.d')
-rw-r--r-- | source/rssmeta.d | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/source/rssmeta.d b/source/rssmeta.d new file mode 100644 index 0000000..6fec5b4 --- /dev/null +++ b/source/rssmeta.d @@ -0,0 +1,13 @@ +// Represents the RssMeta struct, containing the metadata with some fns to +// access it easily. + +struct RssMeta +{ + // TODO: add the magic. + + // filename: either just name or fully qualified should work. + string title_of(string filename) const; + string link_of(string filename) const; + string pubdate_of(string filename) const; + string guid_of(string filename) const; +} |