package stacks import ( "surdeus.su/core/gods" ) type Stack[V any] interface { gods.Container[V] Push(V) Pop() V }