done with functionality relating to performing file operations on terminal

This commit is contained in:
2025-08-26 16:15:40 +01:00
parent dcd3c3117e
commit 2de690f325
8 changed files with 84 additions and 70 deletions

View File

@@ -1,8 +1,8 @@
structure FileMessage =
struct
datatype t =
SAVE_SQUARES of string
| LOAD_SQUARES
| EXPORT_SQUARES of string
| EXPORT_COLLISIONS of string
SAVE_SQUARES of {output: string, filepath: string}
| LOAD_SQUARES of {filepath: string}
| EXPORT_SQUARES of {output: string, filepath: string}
| EXPORT_COLLISIONS of {output: string, filepath: string}
end