mirror of https://github.com/pulumi/pulumi.git
19 lines
361 B
C#
19 lines
361 B
C#
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using Pulumi;
|
|
|
|
|
|
object NotImplemented(string errorMessage)
|
|
{
|
|
throw new System.NotImplementedException(errorMessage);
|
|
}
|
|
|
|
return await Deployment.RunAsync(() =>
|
|
{
|
|
return new Dictionary<string, object?>
|
|
{
|
|
["result"] = NotImplemented("expression here is not implemented yet"),
|
|
};
|
|
});
|
|
|