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

View File

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