Skip to content

Instantly share code, notes, and snippets.

Embed
What would you like to do?
Azure Service Bus
let t2 =
TopicDescription "testtopic2"
let t3 =
TopicDescription "testtopic3"
let setup =
ServiceBus.run (
ServiceBus.liftNamespace (
Namespace.Topics.create t3
*> Namespace.Topics.delete t2.Path
*> Namespace.Topics.list ()))
let res =
Async.RunSynchronously (
setup connection)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment