Add file and request libs

This commit is contained in:
2026-01-28 20:13:28 +11:00
parent 142268c016
commit ea6bf5925b
2 changed files with 12 additions and 0 deletions

6
libs/file.sols Normal file
View File

@@ -0,0 +1,6 @@
def file_Read(string file) string {}
def file_Write(string file, string content) {}
ground {
extern "fileio"
}

6
libs/request.sols Normal file
View File

@@ -0,0 +1,6 @@
def request_Get(string url) string {}
def request_Post(string url, string data) string {}
ground {
extern "request"
}