velib-tracker/velibtracker/velibtrackerApp.swift
Louis 701d163547
feat: Ability to view stations from the API
Addition of a single component for stations; creation of structure; creation of function to retrieve bikes in real time
2023-09-02 17:19:40 +02:00

21 lines
285 B
Swift

//
// velibtrackerApp.swift
// velibtracker
//
// Created by Louis Gallet on 02/09/2023.
//
import SwiftUI
@main
struct velibtrackerApp: App {
var body: some Scene {
WindowGroup {
ContentView()
}
}
init() {
fetchVelibData()
}
}