1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

db.mysql: make mysql.Result.result public (fix #19098)

This commit is contained in:
Delyan Angelov 2023-08-10 05:21:44 +03:00
parent f915366ac4
commit d0cc564089
No known key found for this signature in database
GPG Key ID: 66886C0F12D595ED

View File

@ -1,6 +1,7 @@
module mysql
pub struct Result {
pub:
result &C.MYSQL_RES = unsafe { nil }
}