use super::super::CompilationTarget;
use super::GoogleSheets;
use crate::{Result, Template};
impl CompilationTarget for GoogleSheets<'_> {
fn write_backup(&self) -> Result<()> {
todo!();
}
fn write(&self, template: &Template) -> Result<()> {
self.async_runtime
.block_on(async { self.write_sheet(template).await })
}
}