You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
340 B
25 lines
340 B
package main |
|
|
|
import ( |
|
"os" |
|
"path/filepath" |
|
) |
|
|
|
func getTempPipePath() string { |
|
return filepath.Join(os.TempDir(), "streampipe.flv") |
|
} |
|
|
|
func fileExists(name string) bool { |
|
if _, err := os.Stat(name); err != nil { |
|
if os.IsNotExist(err) { |
|
return false |
|
} |
|
} |
|
return true |
|
} |
|
|
|
func verifyError(e error) { |
|
if e != nil { |
|
panic(e) |
|
} |
|
}
|
|
|