Skip to content

Commit

Permalink
Add files (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
0xLeif authored Apr 17, 2024
1 parent 1b99f12 commit a67e1f9
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 0 deletions.
5 changes: 5 additions & 0 deletions Sources/FeedbackKit/Feedback.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
struct Feedback {
let type: FeedbackType
let title: String
let description: String
}
3 changes: 3 additions & 0 deletions Sources/FeedbackKit/FeedbackClient.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
class FeedbackClient {

}
3 changes: 3 additions & 0 deletions Sources/FeedbackKit/FeedbackStore.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
class FeedbackStore {

}
6 changes: 6 additions & 0 deletions Sources/FeedbackKit/FeedbackType.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
enum FeedbackType: String {
case comment
case bug
case feature
case question
}
5 changes: 5 additions & 0 deletions Sources/FeedbackKit/FeedbackViewModel.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
import SwiftUI

class FeedbackViewModel: ObservableObject {

}

0 comments on commit a67e1f9

Please sign in to comment.