Initial commit

This commit is contained in:
Johan
2026-01-26 00:37:35 +01:00
commit f303cb46b7
30 changed files with 2251 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
//
// Status.swift
// ExodaiAcademy
//
// Created by Exodai on 23/01/2026.
//
enum Status: String, Codable {
case published
case draft
case planned
case inReview
case archived
case trash
}