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
/** | |
* ISO 8601 timestamp | |
* */ | |
export type Timestamp = string; | |
export enum RouteStatus { | |
assigned = 'assigned', | |
completed = 'completed', | |
planned = 'planned', | |
tracking = 'tracking', |
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
// | |
// UserFromForegroundKillApp.swift | |
// UserFromForegroundKill | |
// | |
// Created by f h on 12/03/2024. | |
// | |
import SwiftUI | |
@main |
OlderNewer