1
0
mirror of https://github.com/MultiMC/MultiMC5.git synced 2025-04-01 19:20:12 +00:00

10 lines
245 B
C

#pragma once
#include <QString>
#include <QDateTime>
/// take the timestamp used by S3 and turn it into QDateTime
QDateTime timeFromS3Time(QString str);
/// take a timestamp and convert it into an S3 timestamp
QString timeToS3Time(QDateTime);