mirror of
https://github.com/Smaug123/managed-git
synced 2025-10-06 08:18:43 +00:00
10 lines
197 B
Forth
10 lines
197 B
Forth
namespace Git
|
|
|
|
[<RequireQualifiedAccess>]
|
|
module Blob =
|
|
let create (content : byte array) =
|
|
{
|
|
Header = Header.Blob content.Length
|
|
Content = content
|
|
}
|