2024-08-28 20:11:00 +01:00
|
|
|
signature UPDATE_MESSAGE =
|
|
|
|
|
sig
|
2024-09-27 08:27:53 +01:00
|
|
|
datatype t = DRAW of DrawMessage.t | FILE of FileMessage.t
|
2024-08-28 20:11:00 +01:00
|
|
|
end
|
|
|
|
|
|
|
|
|
|
structure UpdateMessage :> UPDATE_MESSAGE =
|
2024-09-27 08:27:53 +01:00
|
|
|
struct datatype t = DRAW of DrawMessage.t | FILE of FileMessage.t end
|