mirror of
https://github.com/Smaug123/managed-git
synced 2025-10-07 08:48:45 +00:00
7 lines
175 B
Forth
7 lines
175 B
Forth
namespace Git
|
|
|
|
[<RequireQualifiedAccess>]
|
|
module Blob =
|
|
let encode (content : byte array) : byte array = content
|
|
let decode (file : byte array) : byte array = file
|