Files
test_deploy/internal/url_shortener/shortener.go
Alex Shevchuk d84487d238 1
2025-08-18 17:12:04 +03:00

7 lines
143 B
Go

package urlshortener
type Shortener interface {
Shorten(plainText string) (string, error)
Unshorten(encryptedText string) (string, error)
}