-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🚚 (ContentKit): Move Category to own file
- Loading branch information
Showing
2 changed files
with
15 additions
and
6 deletions.
There are no files selected for viewing
15 changes: 15 additions & 0 deletions
15
Modules/ContentKit/Sources/Exercise/Exercise+Category.swift
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
// Leka - iOS Monorepo | ||
// Copyright 2023 APF France handicap | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
import Foundation | ||
|
||
extension Exercise { | ||
|
||
// TODO(@ladislas): is this really needed here? | ||
Check failure on line 9 in Modules/ContentKit/Sources/Exercise/Exercise+Category.swift GitHub Actions / lint
|
||
public enum Category: String, Codable { | ||
case selection | ||
case dragAndDrop | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters