init commit

init commit
This commit is contained in:
Trey t
2023-06-11 20:09:22 -05:00
commit a2fd663255
946 changed files with 38811 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
from rest_framework import serializers
from models import *
class MuscleGroup(serializers.ModelSerializer):
class Meta:
model = MuscleGroup
fields = '__all__'