Fixed Subtraction and Multiplication docs

.NET Core app is doing subtraction and Python app is doing multiplication.
This commit is contained in:
Moien Tajik 2019-10-16 23:29:36 +03:30 committed by GitHub
parent eee30d8a68
commit 8c43b0942c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -3,9 +3,9 @@
This sample shows method invocation and state persistent capabilities of Dapr through a distributed calculator where each operation is powered by a different service written in a different language/framework:
- **Addition**: Go [mux](https://github.com/gorilla/mux) application
- **Subtraction**: Python [flask](https://flask.palletsprojects.com/en/1.0.x/) application
- **Multiplication**: Python [flask](https://flask.palletsprojects.com/en/1.0.x/) application
- **Division**: Node [Express](https://expressjs.com/) application
- **Multiplication**: [.NET Core](https://docs.microsoft.com/en-us/dotnet/core/) application
- **Subtraction**: [.NET Core](https://docs.microsoft.com/en-us/dotnet/core/) application
The front-end application consists of a server and a client written in [React](https://reactjs.org/).
Kudos to [ahfarmer](https://github.com/ahfarmer) whose [React calculator](https://github.com/ahfarmer/calculator)