Stephen keeps working with the in-memory library.db SQLite database. He now wants to create a Go program that takes as input an author's name and then retrieves all of the author's books using db.Model() and the Association() method.
Stephen has already written some code; your task is to help him write the additional required code to chain the db.Model() and Association() methods, retrieve the author's books and then print them to the terminal.
For this task, the
Author, Publisher, and Book models are already declared but are hidden, so DO NOT redeclare them! Just write the additional required code to accomplish the task described above.