-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature/43-string-to-UUID - Replace strings with UUIDs (#46)
- Refactored out common functionality for SwiftyTeeth/Tooth - Swapped out strings with UUIDs - Removed CoreBluetooth from the API (needs more testing) - Needed to do a really crappy symlink to support Swift package manager's single directory Sources when sharing common code
- Loading branch information
1 parent
9ee9ad3
commit 06dfdc7
Showing
18 changed files
with
189 additions
and
244 deletions.
There are no files selected for viewing
File renamed without changes.
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
File renamed without changes.
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
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,14 @@ | ||
// | ||
// Logger.swift | ||
// SwiftyTeeth | ||
// | ||
// Created by SJ on 2020-05-18. | ||
// | ||
|
||
public protocol Logger { | ||
func verbose(_ message: String) | ||
func debug(_ message: String) | ||
func info(_ message: String) | ||
func warning(_ message: String) | ||
func error(_ message: String) | ||
} |
File renamed without changes.
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 @@ | ||
../Common |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.