Skip to content

Add Clonk Center

Latest
Compare
Choose a tag to compare
@xarantolus xarantolus released this 27 Dec 08:18
· 6 commits to master since this release

This program now supports crawling the download page of a Clonk-Center archive. This allows it to download even more items that might disappear someday.

From a programming viewpoint it is now easier to add a new source as you only have to implement the following interface for the item struct (and add json struct tags)

type Archivable interface {
	GetDownloadLink() string
	GetAuthor() string
	GetName() string
	GetSourceName() string
}