mirror of
https://github.com/BillyOutlast/stash-box.git
synced 2026-02-04 19:11:16 +01:00
12 lines
147 B
Go
12 lines
147 B
Go
package sqlx
|
|
|
|
import "database/sql"
|
|
|
|
func intPtrFromNullInt(n sql.NullInt64) *int {
|
|
if n.Valid {
|
|
i := int(n.Int64)
|
|
return &i
|
|
}
|
|
return nil
|
|
}
|