Skip to content

Instantly share code, notes, and snippets.

View AdoraNwodo's full-sized avatar
🏠
Working from home

Adora Nwodo AdoraNwodo

🏠
Working from home
View GitHub Profile
class Store
{
private List<string> storeProducts;
public Store()
{
storeProducts = new List<string>();
}
async Task<string> GetOrAddProduct(Product product)
{
import * as pulumi from "@pulumi/pulumi";
import * as azure from "@pulumi/azure";
const environment = pulumi.getStack();
const location = "WestEurope";
const resourceGroupName = "tutorial-rg";
const appservicePlanName = "tutorial-plan";
const storageAccountName = "tutorialstore";
const functionAppName = "tutorial-app";