Post #4421914
2026-08-06 15:58 UTC
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()
}
```
Replies (0)
No replies.