mirror of
https://github.com/Smaug123/gitea-repo-config
synced 2025-10-07 16:38:41 +00:00
11 lines
162 B
Forth
11 lines
162 B
Forth
namespace Gitea.Declarative
|
|
|
|
[<RequireQualifiedAccess>]
|
|
module Async =
|
|
|
|
let map f a =
|
|
async {
|
|
let! a = a
|
|
return f a
|
|
}
|