2025-10-15 10:43:58 -04:00

6 lines
120 B
Go

package ports
type SessionProvider interface {
GetSession(endpoint, user, password, company string) (string, error)
}