mirror of
https://github.com/m1ngsama/TUT.git
synced 2025-12-24 10:51:46 +00:00
8 lines
151 B
C++
8 lines
151 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
// 从给定 URL 获取 ICS 文本,失败抛出 std::runtime_error
|
|
std::string fetch_ics(const std::string &url);
|
|
|
|
|