npm:
npm i @jeffe/tankille
yarn:
yarn add @jeffe/tankille
const { Client } = require("@jeffe/tankille");
const client = new Client()
async function run() {
await client.login({
email: "test@test.com",
password: "testpass"
})
const stations = await client.getStations()
console.log(stations)
}
run()