Posts by Gabriel • 11 points
2 posts
-
0
votes1
answer128
viewsQ: Using an existing table with Adonisjs
I am a beginner with the Adonisjs framework and need to use it in an existing table with data. Researching I found that I should create a Model for the table, but it didn’t work and I couldn’t find…
-
0
votes1
answer76
viewsQ: Is there any way to reference an Enum inside itself in Python?
I would like to use a constant I created in an Enum as an attribute of another, for example: from enum import Enum class Jokenpo(Enum): PEDRA = ('Rock', [Jokenpo.PAPEL], [Jokenpo.TESOURA]) PAPEL =…