1
0
Fork 0
golang-forgejo-f3-gof3/options/url/interface.go

11 lines
209 B
Go
Raw Normal View History

// Copyright Earl Warren <contact@earl-warren.org>
// Copyright Loïc Dachary <loic@dachary.org>
// SPDX-License-Identifier: MIT
package url
type Interface interface {
SetURL(url string)
GetURL() string
}