package postman import ( "context" "test3k/authPostman/internal/config" ) type AuthPostmanServer struct { } func NewServer(ctx context.Context, config *config.Config) *AuthPostmanServer { return &AuthPostmanServer{} } func (s *AuthPostmanServer) GracefulStop() error { // return s.db.Close() return nil }