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