This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| As multiple persons were requesting help I've decided to create this tool to help people migrate. | |
| https://workout-converter.fly.dev/ | |
| If you liked it, feel free to buy me a coffee. | |
| """ | |
| import pandas as pd | |
| # Read the input CSV file | |
| df_exercises = pd.read_csv("exercises.csv") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| func Test() { | |
| http.HandleFunc("/", Potato{Conn: MockConnection{}}.potatoHandler) | |
| } | |
| type Connection struct{} | |
| type MySQLConnection struct { | |
| db *Connection | |
| } | |
| type MongoConnection struct { | |
| db *Connection |