initial commit

This commit is contained in:
Henry Hiles 2026-09-16 13:21:45 -04:00
commit f053f85d95
Signed by: Henry-Hiles
SSH key fingerprint: SHA256:VKQUdS31Q90KvX7EkKMHMBpUspcmItAh86a+v7PGiIs
23 changed files with 25934 additions and 0 deletions

20
scripts/fetch.dart Normal file
View file

@ -0,0 +1,20 @@
import "dart:io";
import "package:http/http.dart";
void main(List<String> args) async {
print("Downloading emoji list...");
final response = await get(
.https("github.com", "github/gemoji/raw/refs/heads/master/db/emoji.json"),
);
if (response.statusCode != 200) {
throw Exception("Failed to load emoji data");
}
await File.fromUri(Platform.script.resolve("../assets/emoji.json"))
.writeAsString(response.body);
print("Emoji list written!");
}