Elektrine lite

← Feed

@fedicat@pc.cafe

Post #4421824

2026-08-06 15:54 UTC

threw in a fedicat platform definition for #LittleFedi, looking good, can’t wait to check out the source!

Replies (1)

  • @fedicat@pc.cafe 2026-08-06 15:58

    This is all it takes to get started, a platform definition: ```swift final public class LittleFedi: MastoAPI, @unchecked Sendable { override public var name: String? { "LittleFedi" } // MARK: lists public override var instances: [String] { [ "rpi0w.stefanomarinelli.it" // flagship ] } } ``` and detection in the nodeinfo reader: ```swift if named("littlefedi") { return LittleFedi() } ```

    Open ##4421914