git-subtree-dir: dotscape git-subtree-mainline:6b91d64fc3git-subtree-split:f306501a68
9 lines
261 B
Standard ML
9 lines
261 B
Standard ML
structure FileMessage =
|
|
struct
|
|
datatype t =
|
|
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
|