mirror of
https://github.com/rocky-linux/srpmproc.git
synced 2024-11-10 15:21:28 +00:00
9 lines
142 B
Go
9 lines
142 B
Go
|
package internal
|
||
|
|
||
|
import "log"
|
||
|
|
||
|
// FetchRPM downloads the rpm into /tmp/srpmproc
|
||
|
func FetchRPM(uri string) {
|
||
|
log.Fatal("Not supported")
|
||
|
}
|